MastodonHelp/web/clitools/maintain/pcloop.bash

10 lines
226 B
Bash
Executable file

#!/bin/bash
trap "exit" INT
basedir=`dirname "$0"`
cd "$basedir/.."
while true; do
./peerscrawl.php -e peerscrawl.exclude -E &> peerscrawl.log
tail peerscrawl.log >> pcloop.log
echo "### END ###" >> pcloop.log
done
exit 0;