SHELL Lab Activity Task
ISS Lab 2 Activity
Complete the given tasks before the lab ends i.e. 5PM.
For the Love of God don’t copy! If you have any doubts feel free to ask the TAs in your respective channel.
Submission to be made in your respective github repository created by github classroom and moodle.
Task1:
Write a script ‘q1.sh’ to multiply three numbers which are provided as command line arguments. Display error message if correct number of arguments are not provided. The numbers to be multiplied need not always be integers. - (1 mark if it works for integers + 2 marks if it works for floats + 1 mark for error handling)
Task2:
Consider the file “hamlet.txt”. Write one script ‘q2.sh’ to do the following
Display all occurrences (case insensitive) of the word “to”in the file. - (2 marks)
In the same file, display all the lines in which the word “is” occurs (not as a part of any other word). (Words like “despised” should not be present in your output). - (2 marks)
Display the line that contains the word “bear” and also the following 2 lines. - (2 marks)
Remove write and execute access from the file “hamlet.txt” for group and others - (2 marks)
Allow everyone to read the same file (hamlet.txt), using a single command. - (2 marks)
View all the groups that the current user account is attached to. - (2 marks)
List all the files from your current directory for which group has execute permissions. (Hint:piping, grep) - (4 marks)
Task3:
Write one script ‘q3.sh’ to do the following:
Create a new file named “o1.txt”, which contains the calendar for this month. (use cal command to get the calendar). - (2 marks)
To the same file, append today’s date (using the date command). - (2 marks)
Now append “IIIT Hyderabad is cool” 100 times to the end of the file. - (2 marks)
Display the contents of the file “o1.txt”. - (2 marks)
Display the first 3 lines of the file. - (2 marks)
Display the lines 6 to 15. - (2 marks)
Display the number of lines in the output of task 3, using piping. - (2 marks)
Using the echo command, write the string “ISS Zindabad” in a new file called “o2.txt”. - (2 marks)
Print the number of words in the file “o2.txt”. - (2 marks)
Append the line “I am Kassi.” in the same file (“o2.txt”). - (2 marks)
Print the number of lines in the file “o2.txt”. - (2 marks)
Print the 4th column of the file “o1.txt”. - (2 marks)
Print from column number 2 to column number 5 (both included) of the file “o1.txt”. - (2 marks)
Print from the third column, everything till the n-5th line of the file “o1.txt”. - (2 marks)
Print the second and the fourth words of every row from the file “o1.txt” using a single command (Hint: space delimiter). - (2 marks)
Example: If your file “o1.txt” contains:
Output:
Last updated
Was this helpful?