Little script to run peerscrawl.php in loop; first commit

This commit is contained in:
pezcurrel 2022-12-25 11:32:49 +01:00
parent 10e2e1b58a
commit ec9b65e42f

View file

@ -0,0 +1,8 @@
#!/bin/sh
trap "exit" INT
basedir=`dirname "$0"`
cd "$basedir/.."
while true; do
./peerscrawl.php -e peerscrawl.exclude -E &> peerscrawl.log
done
exit 0;