mirror of
https://git.busybox.net/busybox
synced 2025-05-10 04:33:59 +02:00
8 lines
145 B
Text
Executable file
8 lines
145 B
Text
Executable file
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"
|