Question: Assume the script below is stored as a text file SF . sh : # ! / bin / bash while getopts :cf

Assume the script below is stored as a text file
SF.sh :
#!/bin/bash
while getopts ":cf" options;
do
case $options in
c)
clear
;
f)
Is -1
;
*)
echo "Invalid command line argument:
-$OPTARG "
;
esac
done
What does the command "./SF.sh -cd"do?
Assume the script below is stored as a text file

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!