Advertisement
Guest User

Untitled

a guest
Jun 8th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. #!/usr/local/bin/bash
  2. #
  3. #Your PISG executable location
  4. PISG_DIR="/Users/marvingomez/eggdrop/IRCStats-1.0"
  5.  
  6. #FTP Hostname
  7. FTP_HOST="ftp.aaron5k.com"
  8.  
  9. #FTP Username
  10. FTP_USER="marvz"
  11.  
  12. #FTP Password
  13. FTP_PASS="*****"
  14.  
  15. #Directory to upload your html file too
  16. FTP_DIR="/stats"
  17.  
  18. #HTML File name. I suggest you don't touch this if
  19. #your putting it in it's own directory.
  20. INDEX_FILE="index.html"
  21.  
  22.  
  23. #DO NO EDIT BELOW HERE
  24.  
  25. $PISG_DIR spf.cfg
  26.  
  27. ftp -Vu ftp://$FTP_USER:$FTP_PASS@$FTP_HOST/$FTP_DIR $INDEX_FILE
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement