aboutsummaryrefslogtreecommitdiff
path: root/shell/ash_test/ash-misc/func_args1.tests
blob: 7970795a9c7f71904eab2223d1031e520233ed7a (plain)
1
2
3
4
5
6
7
8
9
f() { echo "'f $1 $2 $3' called"; }

set -- a b c
echo "params: $1 $2 $3"
f 1 2 3
echo "params: $1 $2 $3"
true | f 1 2 3
echo "params: $1 $2 $3"