Skip to content

Instantly share code, notes, and snippets.

@muru
Created November 19, 2014 21:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save muru/7d7f7bd4b6f3b53135bb to your computer and use it in GitHub Desktop.
Save muru/7d7f7bd4b6f3b53135bb to your computer and use it in GitHub Desktop.
while true
do
clear
size=$(ls -l /var/spool | wc -c)
sleep 30
newsize=$(ls -l /var/spool | wc -c)
if (( $size < $newsize ))
then
echo "You've got mail!"
else
echo "Sorry no mail yet"
fi
sleep 30
done &
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment