9 lines
64 B
Plaintext
Executable File
9 lines
64 B
Plaintext
Executable File
f() { echo $1; }
|
|
f 1
|
|
|
|
f() ( echo $1; )
|
|
f 2
|
|
|
|
f() ( echo $1 )
|
|
f 3
|