blob: 324181b9860e881380987e899b50ba35b5802a8f (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/sh
old=`svdrpsend.pl chan | grep 250 | cut -d " " -f2`
for dat in `cat $HOME/.master-timer/channels-to-scan`
do
svdrpsend.pl "chan $dat"
sleep 30s
done
svdrpsend.pl "chan $old"
|