mirror of
https://github.com/sheumann/hush.git
synced 2024-11-19 08:31:11 +00:00
11 lines
160 B
Plaintext
11 lines
160 B
Plaintext
|
# UNFIXED BUG
|
||
|
|
||
|
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"
|