soulrpg

Bash_4

May 28th, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.32 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3.  
  4. WEBSITE=$1
  5. shift 1
  6.  
  7. if [ $1 == "-t" ]
  8. then
  9.    time=$2
  10.    shift 2
  11. else
  12.    time=5
  13. fi
  14. command=$*
  15. old=plik1
  16. new=plik2
  17. wget $WEBSITE -O $new -q
  18. while true
  19. do
  20.    mv $new $old
  21.    sleep $time
  22.    wget $WEBSITE -O $new -q
  23. if [ $new -nt $old ]
  24. then
  25.    $command
  26. else
  27.     echo no change
  28. fi
  29. done
Add Comment
Please, Sign In to add comment