Program 2 : pgm2dCGS3767os Class : CGS3767 Operating Systems Instructor : Michael Robinson - Go into your virtual machine and load up Ubuntu - Create a folder called : program2 - Move to your program2 folder - Download into the program2 folder this file: http://users.cis.fiu.edu/~mrobi002/downloads/pseudomonas_aeruginosa/pa01nov2006/NC_002516.gbk 1 - All the following tasks MUST be done using Linux commands as learned in class. a - Create a linux Script file called yourLastNameFirstNameInitialPgm2.sh b - Write the name of the file just created with all its atributes into a new file called stats.txt c - Change access rigths as follows: chmod 755 yourLastNameFirstNameInitialPgm2.sh d - Again, write the name of the file just created with all its atributes into a file called stats.txt e - In the first line of the file yourLastNameFirstNameInitialPgm2.sh write: #!/bin/bash When you execute the .sh file the following will be executed by the .sh file: f - Display program two Starting g - Create a directory called dna h - Find out how many words, lines/row/records, and how many bytes are in the NC_002516.gbk file. Write that information to a file called dnaCount.txt to be written into the dna folder. i - Using the cat command display the contents of the dnaCount.txt file and write its output to a to a new file named dnaCount2.txt, in the current directory j - Using the cat command merge the following files: dnaCount.txt, NC_002516.gbk, dnaCount2.txt into a new file called merged.txt in the dna folder. k - Find out all the lines that contain the word tataga in the NC_002516.gbk file and create a new file named tatagaAmts.txt with all these lines. l - Display contents in tatagaAmts.txt m - Count the amount of the word tataga in the tatagaAmts.txt file, and merge totals to the merged.txt file n - Display the last 3 lines of the file merged.txt o - Display the first 3 lines of the file merged.txt p - display program two ended