mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:08:56 +00:00
12 lines
276 B
Bash
Executable File
12 lines
276 B
Bash
Executable File
SOURCE="${BASH_SOURCE[0]}"
|
|
DIR="$( dirname "$SOURCE" )"
|
|
|
|
cd $DIR"/../conf"
|
|
for fn in `cat active_regexes.txt`; do
|
|
echo "Resetting $fn"
|
|
mysql --defaults-file=my.cnf -uroot newznab -e "update releaseregex set status=1 where ID=$fn"
|
|
done
|
|
|
|
|
|
#rm active_regexes.txt
|