5439648913
Example: f() { : ${LINENO+$((1/0))}; } and call this function twice.
11 lines
95 B
Plaintext
11 lines
95 B
Plaintext
# $FreeBSD$
|
|
|
|
f() {
|
|
: ${LINENO+${x?}}
|
|
}
|
|
|
|
unset -v x
|
|
command eval f 2>/dev/null && exit 3
|
|
x=1
|
|
f
|