dotfiles/bash/bash.d/fortune

11 lines
150 B
Plaintext
Raw Normal View History

2016-10-03 10:30:30 +02:00
# Give a fortune cookie
if [[ $(command -v fortune) ]]
then
if [[ $(command -v cowsay) ]]
then
fortune -so | cowsay -n
else
fortune -so
fi
fi