$#
引数の数。コマンドその物は引数の数に含まない。
code:mycmd.sh
#!/bin/sh
echo $#
code:result
$ mycmd.sh AAA BBB CCC
3
#特殊変数