blob: 51e70bfa8ac22d0457b22e9ed58ebe74bb01bfd1 (
plain) (
blame)
1
2
3
4
5
6
|
# This may fail when parsing or when defining the function, or the definition
# may silently do nothing. In no event may the function be executed.
${SH} -c 'unset() { echo overriding function executed, bad; }; v=1; unset v; exit "${v-0}"' 2>/dev/null
:
|