forked from encrypt/toot
13 lines
249 B
Bash
13 lines
249 B
Bash
|
|
||
|
SLEEP_INTERVAL=3h
|
||
|
|
||
|
#
|
||
|
# Last line should be empty, so we dont need an additional read here
|
||
|
# after the while loop
|
||
|
#
|
||
|
while read line
|
||
|
do
|
||
|
echo "[INFO] Now tooting: $line"
|
||
|
./toot.sh $line >/dev/null 2>&1 &
|
||
|
sleep ${SLEEP_INTERVAL}
|
||
|
done < megafono.txt
|