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
Patch-ID: bash32-029
[bash.git]
/
tests
/
dollar-at2.sub
blob
c079a295176f8a8aa3058ec90b90a654cf3729ea
1
t1()
2
{
3
xxx="echo $@"
4
5
recho "$xxx ; echo $@"
6
}
7
8
t2()
9
{
10
xxx="echo $@"
11
12
recho "${xxx} ; echo $@"
13
}
14
15
t1 1
16
t1 1 2
17
18
t2 1
19
t2 1 2