Guest User

Untitled

a guest
Dec 15th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. #This script will download the ardop list to a file called
  4. #ardoplist.txt in ~/Documents/winlink/ It is intended to be run by cron daily at
  5. #10pm to keep the list current. km4ack 20181214
  6.  
  7. mkdir -p ~/Documents/winlink
  8.  
  9. FILE=~/Documents/winlink/ardoplist.txt
  10. if [ -f $FILE ]; then
  11. rm $FILE
  12. fi
  13.  
  14. echo "List Updated $(date)" >> $FILE
  15.  
  16. pat rmslist | grep ardop >> $FILE
Add Comment
Please, Sign In to add comment