busybox/shell/hush_test/hush-misc/func5.tests

9 lines
64 B
Plaintext
Executable File

f() { echo $1; }
f 1
f() ( echo $1; )
f 2
f() ( echo $1 )
f 3