pr4wn

Bash to download footy fixtures

Jun 21st, 2015
256
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.26 KB | None | 0 0
  1. #!/bin/sh
  2.  
  3. of="$HOME/Documents/calendar/cpfc.ics"
  4. tf="$HOME/Documents/calendar/cpfc.new"
  5.  
  6. wget http://www.goalpost.tv/calendar/premier-league/crystal-palace.ics -O $tf
  7.  
  8. if [ $? == 0 ]
  9. then
  10.         echo Moving $tf to $of
  11.  
  12.     mv $tf $of
  13.  
  14. fi
  15.  
  16. exit $?
Add Comment
Please, Sign In to add comment