i-bash/tests/dollar-at2.sub

20 lines
127 B
Text
Raw Normal View History

2004-07-27 13:29:18 +00:00
t1()
{
xxx="echo $@"
recho "$xxx ; echo $@"
}
t2()
{
xxx="echo $@"
recho "${xxx} ; echo $@"
}
t1 1
t1 1 2
t2 1
t2 1 2