]> git.ipfire.org Git - thirdparty/bash.git/blame - tests/dollar-star2.sub
Bash-4.3 patch 7
[thirdparty/bash.git] / tests / dollar-star2.sub
CommitLineData
95732b49
JA
1set A B
2
3IFS=
4
5x=$*
6y="$*"
7
8recho "$x"
9recho "$y"
10
11IFS=$' \t\n'
12
13set 'A B' 'C D'
14
15IFS=
16
17x=$*
18y="$*"
19
20recho "$x"
21recho "$y"
22
23recho $x
24recho $*
25recho $y
26recho "$*"