1
0
Fork 0

Only print fortunes in terminals

pull/695/head
Joel Kuzmarski 11 years ago committed by Sorin Ionescu
parent 34a50c2550
commit 5791c07d48

@ -16,6 +16,8 @@
# Print a random, hopefully interesting, adage. # Print a random, hopefully interesting, adage.
if (( $+commands[fortune] )); then if (( $+commands[fortune] )); then
fortune -a if [[ -t 0 || -t 1 ]]; then
print fortune -a
print
fi
fi fi

Loading…
Cancel
Save