#!/bin/sh
# Print a fortune cookie for login shells:

# Only output a fortune if $HOME/.hushlogin does not exist:
if [ ! -e $HOME/.hushlogin ]; then
  # Only output a fortune on interactive shells:
  case $- in
  *i* )  # We're interactive
    echo
    /usr/games/fortune 
    echo
    ;;
  esac
fi
