You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
470 B
Bash
10 lines
470 B
Bash
6 years ago
|
#!/bin/bash
|
||
|
|
||
|
while true # run a loop
|
||
|
do
|
||
|
wget -O live.tmp https://pad.xpub.nl/p/test/export/txt # download the txt of a pad's link into a file.tmp
|
||
|
mv live.tmp live.html # rename .tmp into .html
|
||
|
sleep 5 # 5 seconds delay
|
||
|
done # restart the loop
|
||
|
|