|
|
|
@ -14,10 +14,13 @@
|
|
|
|
|
fi
|
|
|
|
|
} &!
|
|
|
|
|
|
|
|
|
|
# Print a random, hopefully interesting, adage.
|
|
|
|
|
if (( $+commands[fortune] )); then
|
|
|
|
|
if [[ -t 0 || -t 1 ]]; then
|
|
|
|
|
# Execute code only if STDERR is bound to a TTY.
|
|
|
|
|
[[ -o INTERACTIVE && -t 2 ]] && {
|
|
|
|
|
|
|
|
|
|
# Print a random, hopefully interesting, adage.
|
|
|
|
|
if (( $+commands[fortune] )); then
|
|
|
|
|
fortune -s
|
|
|
|
|
print
|
|
|
|
|
fi
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
} >&2
|
|
|
|
|