$#, $* and $@ in bash
This is little script shows the usage of $#, $* and $@ in bash.
?
#!/bin/bashfunction countargs { echo "$# args."}echo "$*"countargs "$*"countargs "$@"?
发布时间: 2012-07-02 17:46:23 作者: rapoo
$#, $* and $@ in bash
This is little script shows the usage of $#, $* and $@ in bash.
?
#!/bin/bashfunction countargs { echo "$# args."}echo "$*"countargs "$*"countargs "$@"?