Upload Tizen:Base source
[external/bash.git] / tests / dollar-at2.sub
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