summaryrefslogtreecommitdiffstats
path: root/shell_cmds/sh/tests/expansion/set-u2.0
blob: 55da8aa9b11c6c1c98faf15c30de3d3dafe4c4d0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# $FreeBSD: head/bin/sh/tests/expansion/set-u2.0 198454 2009-10-24 21:20:04Z jilles $

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