illumos-port-bash/tests/dollar-star4.sub

10 lines
79 B
Plaintext

set -u
echo ${#*}
echo ${*:-bar}
echo $*
echo after 1
echo ${*}
echo after 2