One guy helped me to create a ".sh" to automaticatly add the filters.
I mean , just open your romlist.txt with libreoffice for example.
Create a .txt with all the "filters" , should be named "filtros_duplicados.txt"
Action
Action
Action
Educational
Educational
Educational
Educational
Educational
Flying
Flying
Flying
Flying
Flying
Flying
Flying
Then create the .sh and execute:
cat -n filtros_duplicados.txt |
sort -u -k2,7 |
sort -n |
sed 's/.*\t/ /;s/\([0-9]\{4\}\).*/\1/' >> filtros.txt
sed -i 's/\r//' filtros.txt
while read LINE;
do
{
echo ' filter '$LINE'' >> filtros2.txt
echo ' rule Category contains '$LINE'' >> filtros2.txt
}
done < filtros.txt
A new "filtros2.txt" will be created with all your filters without duplicates.
Maybe I have to create an step by step detayled tutorial , but I think is quite simple