Skip to content

Instantly share code, notes, and snippets.

@travisbhartwell
Forked from anonymous/gist:230505
Created November 10, 2009 01:08
Show Gist options
  • Save travisbhartwell/230516 to your computer and use it in GitHub Desktop.
Save travisbhartwell/230516 to your computer and use it in GitHub Desktop.
#!/bin/bash
#AlarmClock
echo "enter amount of time to sleep"
read -e GETUPNOW
echo "enter 1 for beep, 2 for music"
read -e WHATKIND
if [ "$WHATKIND" = "1" ]; then
for i in $(seq 2000); do
beep
echo "Get Up!"
done
else
cvlc /home/juggarnatha/Examples/fables_01_01_aesop.spx
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment