$#, $* and $@ in bash
This is little script shows the usage of $#, $* and $@ in bash.
?
#!/bin/bashfunction countargs { echo "$# args."}echo "$*"countargs "$*"countargs "$@"