program # 3 pgm3_6aCGS3767OS Professor: Michael Robinson e-mail : michael.robinson@cs.fiu.edu Web Page : cs.fiu.edu/~mrobi002 - Program must be named: yourLastNameFirstLetterOfYourFirstNamePgm3.sh ex: robinsonMpgm1.sh This assignment is worth 5 points total, partial credit will be given, Purpose of this program: 1 - Worth 0.5 points. Using Linux Shell Scripting. - Using linux teminal command, create a sh file named: yourLastNameFirstNameInitialPgm3.sh - Set the following command to your *.sh file: chmod 755 *.sh - Using the nano editor, append the following data to your *.sh file /********************************************************************* Author : Your Name Course : OS section. Example OS1, OS2 OS3, OS4 Professor : Michael Robinson Program # : Program Purpose/Description { A brief description of the program } Due Date : MM/DD/YYYY Certification: I hereby certify that this work is my own and none of it is the work of any other person. *********************************************************************/ 2 - Worth 2.25 points. Using Linux Shell Scripting. topic: Implement division by 0, with error trapping, using if and while commands, - Using the nano editor, append to the *.sh file, all the commands needed so that when you execute your sh file, it will produce the following: a - Append your name, current date and time to a NEW file called results.txt b - Using two variables: FirstNumber and LastNumber, use a while loop. c - Ask the user to enter the first number. d - Ask the user to enter the second number. e - If the user enters the value 55 for the first or the second number, you must exit the while loop immediately, and terminate this section. f - If the second number is ZERO inform the user that you CAN NOT divide by ZERO, and ask for a correct second number. g - If the second number is NOT a zero, do the division, display all numbers of this computation using labels, and add the same to the results.txt file. example: 4 divided by 1 = 4 3 - Worth 2.25 points. Linux Shell Scripting. - Using the pico editor, append to the *.sh file, all the commands needed so that when you execute your sh file, this file will produce the following: a - Use a for loop from 1 to 50. b - Find the results of calculating each number from (1 to 50 mod 2) + 6. c - After the for loop ends, display the average for all previous results and append them to the results.txt file. Upload this program to Moodle and bring a printed and STAPLED copy of this program