Write shell script for linux os and also produce 2 output files for the files inside the zip file
Include script # inside commentary lines in each file.
1. Create a shell script that performs a count on three files in the Files folder
• Assign the filenames F95.doc, P22.txt and U52.csv to an array.
• Use a for loop whose variable is assigned to each filename in sequence in the array to do the following:
• Find how many words are in the file and show it to the screen.
• Write the count and filename to an output file.
2. Create a shell script that copies all files that begin with specific letters to a new folder, then counts how many files were copied:
• Create a new folder for the copied files.
• Assign the letters J, M and Q to an array.
• Use a for loop whose variable is assigned to each letter in sequence in the array to do the following:
• Copy all files that begin with the letter in the Files folder to the new folder.
• Echo the letter to the screen.
• Find and state how many files were copied.
• Write the letter and the count to an output file.
• Find the total number of files copied. Show this on the screen and send it to the output file.