summarylogtreecommitdiffstats
path: root/fortune.sh
blob: 8b170b9bb1a50249b988d15495740c142be0d73f (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh
# Print a fortune cookie for interactive shells:
if [[ $- = *i* ]]; then
  echo
  fortune -a
  echo
fi