7 lines
207 B
Bash
Executable file
7 lines
207 B
Bash
Executable file
#!/bin/bash
|
|
while :;do
|
|
NUM=$( grep 'INFO - Downloading' delojza.log|wc -l)
|
|
echo $NUM
|
|
curl -s 'https://kunsaxan.sdbs.cz/counter.php?key=delojza7953713b19ef2ea055156c8dc175bf80&count='$NUM
|
|
sleep 300;
|
|
done
|