mirror of
https://github.com/sheumann/hush.git
synced 2025-03-12 09:29:36 +00:00
7 lines
120 B
Plaintext
7 lines
120 B
Plaintext
|
# Bag: backticks are executed even inside not-taken if
|
||
|
if false; then
|
||
|
echo "FOO"
|
||
|
tmp=`echo BAR >&2`
|
||
|
fi
|
||
|
echo BAZ
|