We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
;;
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.
case
There was an error while loading. Please reload this page.