~ubuntu-branches/ubuntu/trusty/bash/trusty-security

1
2
3
4
5
6
7
8
9
set -u

echo ${#*}
echo ${*:-bar}

echo $*
echo after 1
echo ${*}
echo after 2