blob: ab33b909f77b10892d55696486939e655ae573ec (
plain)
1
2
3
4
5
6
7
8
9
|
# This is an error
(eval 'if() { echo; }')
echo Fail:$?
# ^^^^^^ bash prints 1, but interactively it sets $? = 2
# we print 2
# This is an error, and it aborts in script
if() { echo; }
echo Not reached
|