Advertisement
Guest User

Untitled

a guest
Apr 25th, 2015
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. #!/bin/bash
  2. # Author: Hugo Alvarado
  3. # Date: March 8, 2015
  4.  
  5. TODAY=$(date)
  6.  
  7. echo "Your log entry here: $TODAY" >> /path/to/your/movie.log
  8. echo "Your text message here: $TODAY" | sudo /usr/bin/gammu sendsms TEXT 1112223344 2> /path/to/your/error.log
  9.  
  10. if [ "$?" = "0" ]; then
  11. echo "SMS Sent" >> /path/to/your/movie.log
  12. else
  13. echo "Cannot send SMS" >> /path/to/your/movie.log
  14. exit 1
  15. fi
  16. exit 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement