Guest User

Untitled

a guest
Apr 17th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.52 KB | None | 0 0
  1. #!/bin/bash
  2. # Copie des logs
  3. cp ~/.znc/users/microbe/moddata/log/#Insomnie_*.log ~/Desktop/scripts/insomnie/log/
  4. # Creation d'une nouvelle page de stats
  5. time=`date +%d-%m-%y`
  6. pisg -co pisg.cfg -t _$time
  7. mv insomnie-stats*.html stat/
  8. # Update du site local
  9. cp log/* /var/www/insomnie/log
  10. cp stat/* /var/www/insomnie/stats
  11. # Upload FTP
  12. HOST=***
  13. USER=***
  14. PASS=***
  15.     # fichiers de stats ( html )
  16. for fichier in `ls stat`
  17. do
  18.     ncftpput -u $USER -p $PASS $HOST /public_html/stats stat/$fichier
  19. done
  20.     # fichiers de logs
Add Comment
Please, Sign In to add comment