nt9856x/BSP/busybox/shell/ash_test/ash-misc/func5.tests
2023-03-28 15:07:53 +08:00

9 lines
64 B
Plaintext
Executable File

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