repo.or.cz
/
bash.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Added gitignore entries needed to ignore derived objects generated from full build...
[bash.git]
/
tests
/
dollar-star2.sub
blob
844a297282a54040d746e77c32879186d91c8e36
1
set A B
2
3
IFS=
4
5
x=$*
6
y="$*"
7
8
recho "$x"
9
recho "$y"
10
11
IFS=$' \t\n'
12
13
set 'A B' 'C D'
14
15
IFS=
16
17
x=$*
18
y="$*"
19
20
recho "$x"
21
recho "$y"
22
23
recho $x
24
recho $*
25
recho $y
26
recho "$*"