stupid little alarm program (bash script)
almost missing office hour due to jetlag is not a nice idea.. hence wrote this nonsense little script, which would stream a shoutcast stream while waiting to kick me up screaming.. Now, why should I suffer alone? :D.. #!/bin/bash #Choose your favourite stations from shoutcast.com (net radio) LINK="http://yp.shoutcast.com/sbin/tunein-station.pls?id=6063" if [ $# -eq 0 ]; then echo "usage $0 wakeup_duration" echo "wakeup_duration: wakeup after how long? 6 hours, 1 hour, 20 mins etc. or even 5am tomorrow.." exit 1 fi NOW_SEC=$(date +%s) WAKEUP_SEC=$(date +%s --date="$*") if [ $? -ne 0 ]; then echo "oopss.. i dont think date understands $*" exit 2 fi if [ $NOW_SEC -gt $WAKEUP_SEC ]; then SLEEP_SEC=$(( $NOW_SEC - $WAKEUP_SEC)) echo "Do you wish to wakeup $SLEEP_SEC seconds previously??.." echo "Sorry cant help you with that.. :(" exit 3 fi SLEEP_SEC=$(( $WAKEUP_SEC - $NOW_SEC)) echo "NOW=$NOW_SEC WAKE=$WAKEU...