-
Notifications
You must be signed in to change notification settings - Fork 1.8k
SC1074
flyxyz123 edited this page Feb 28, 2024
·
5 revisions
while getoptions f option
do
case "${options}"
in
f) FTR="${ARG}"
\?) exit
esac
done
while getoptions f option
do
case "${options}"
in
f) FTR="${ARG}";;
\?) exit;;
esac
done
Syntax case
needs ;;
after the previous case item. If not, syntax error will cause.