Program 2 : pgm2eCGS3767os Class : CGS3767 Operating Systems Instructor : Michael Robinson Worth 10 points - 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 Write inside your *.sh file all the commands needed so that when you execute your *.sh file the following will be execute: 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 writing that information to a new file called dnaCount.txt to be written into the dna folder. i - Display the first 5 lines 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 lines/rows/records of the word ttt in the NC_002516.gbk file, and send its output, to a new file named tttAmts.txt in the current directory l - Display contents in tttAmts.txt m - Count the amount of the word ttt in the tttAmts.txt file, and merge totals to the merged.txt file n - Display the last lines of the file merged.txt o - Display the first 3 lines of the file merged.txt p - display program two ended