source: trunk/essentials/app-shells/bash/tests/dollar-star2.sub

Last change on this file was 3228, checked in by bird, 18 years ago

bash 3.1

File size: 163 bytes
Line 
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 "$*"
Note: See TracBrowser for help on using the repository browser.