mirror of
https://github.com/kastdeur/dotfiles.git
synced 2024-11-01 01:53:32 +01:00
10 lines
150 B
Text
10 lines
150 B
Text
# Give a fortune cookie
|
|
if [[ $(command -v fortune) ]]
|
|
then
|
|
if [[ $(command -v cowsay) ]]
|
|
then
|
|
fortune -so | cowsay -n
|
|
else
|
|
fortune -so
|
|
fi
|
|
fi
|