mirror of
https://github.com/dirtbags/moth.git
synced 2025-01-05 11:30:41 -07:00
14 lines
203 B
Bash
Executable file
14 lines
203 B
Bash
Executable file
#! /bin/sh
|
|
|
|
cd ${1:-$(dirname $0)}
|
|
KOTH_BASE=$(pwd)
|
|
|
|
echo "Running koth instances in $KOTH_BASE"
|
|
|
|
while true; do
|
|
for i in $KOTH_BASE/*/assigned.txt; do
|
|
dir=${i%/*}
|
|
$dir/bin/once
|
|
done
|
|
sleep 5
|
|
done
|