hi
Im new to shepp script. I would like to ask how can I display a list of students in my class
Im new to shepp script. I would like to ask how can I display a list of students in my class
echo 'Do you want to display the list of students(y/n)' read flag if [ flag = y ] then cat (your_file_containing_names) else exit 1 fi
Comment