13 lines
184 B
Plaintext
13 lines
184 B
Plaintext
|
# make sure len parsing doesnt break arg count
|
||
|
set --
|
||
|
echo $# ${#}
|
||
|
set -- aaaa bbb cc d
|
||
|
echo $# ${#}
|
||
|
|
||
|
echo ${#1} ${#2} ${#3} ${#4} ${#5} ${#6}
|
||
|
|
||
|
unset e
|
||
|
f=abc
|
||
|
g=
|
||
|
echo ${#e} ${#f} ${#g}
|