$# $* and $@ in bash

$#, $* and $@ in bashThis is little script shows the usage of $#, $* and $@ in bash.?#!/bin/bashfun

$#, $* and $@ in bash

This is little script shows the usage of $#, $* and $@ in bash.

?

#!/bin/bashfunction countargs {    echo "$# args."}echo "$*"countargs "$*"countargs "$@"
?