mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-21 12:57:58 +02:00
10 lines
79 B
Plaintext
10 lines
79 B
Plaintext
set -u
|
|
|
|
echo ${#*}
|
|
echo ${*:-bar}
|
|
|
|
echo $*
|
|
echo after 1
|
|
echo ${*}
|
|
echo after 2
|