You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

live.sh 470B

123456789
  1. #!/bin/bash
  2. while true # run a loop
  3. do
  4. wget -O live.tmp https://pad.xpub.nl/p/test/export/txt # download the txt of a pad's link into a file.tmp
  5. mv live.tmp live.html # rename .tmp into .html
  6. sleep 5 # 5 seconds delay
  7. done # restart the loop