10 lines
138 B
Text
10 lines
138 B
Text
# echo shell header
|
|
out=$(birthdays 2> /dev/null)
|
|
|
|
if [[ $out ]]; then
|
|
cowsay -d -W50 $out
|
|
else
|
|
cowsay -d -W50 $(fortune)
|
|
fi
|
|
|
|
ddate
|