case "$#/$1" in
1/-f) redodb=yes ;;
0/) ;;
*) echo "Usage: $0 [-f]" 1>&2; exit 1 ;;
esac
If there's one argument ($# is
1) and the argument ($1) is
exactly -f, the first pattern matches, and the
redodb variable is set. If
there's no argument, $# will be
0 and $1 will be empty, so the
second pattern matches. Otherwise, something is wrong; the third
pattern matches, the script prints an error and exits.
Of course, you can do a lot more this way than just testing
command-line arguments.
-- JP
 |  |  |
36.24. Nested Command Substitution |  | 36.26. Outputting Text to an X Window |