2023-11-16 23:19:36 -05:00

9 lines
64 B
Plaintext
Executable File

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