summaryrefslogtreecommitdiff
path: root/corebinutils/sh/tests/expansion/set-u2.0
blob: 138f7bc275586011692afcdf765cd77bf53f1262 (plain)
1
2
3
4
5
6
7
8
9
10
11

set -u
: $* $@ "$@" "$*"
set -- x
: $* $@ "$@" "$*"
shift $#
: $* $@ "$@" "$*"
set -- y
set --
: $* $@ "$@" "$*"
exit 0