Files
bash/tests/dollar-star6.sub
2013-01-03 10:48:31 -05:00

20 lines
224 B
Plaintext

recho "A${*:-w}R"
recho "A${*-w}R"
recho "A${*}R"
set -- ""
recho "A${*:-w}R"
recho "A${*-w}R"
recho "A${*}R"
set -- $'\177'
recho "A${*:+w}R"
recho "A${*+w}R"
recho "A${*}R"
recho A${*:+w}R
recho A${*+w}R
recho A${*}R