aboutsummaryrefslogtreecommitdiff
path: root/bin/sh/tests/expansion/set-u2.0
blob: f81aa62cb6ba3c07af5c803e93f708c42a4bf000 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# $FreeBSD$

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