af-wall/scripts/reverse.sh
2025-11-20 14:05:38 +01:00

11 lines
214 B
Bash
Executable file

for d in */ ; do
while read line
do
key=`echo "$line" | cut -d'=' -f2`
value=`echo "$line" | cut -d'=' -f1`
if [ $key"/" = $d ]
then
mv $d $value
fi
done < convert.properties
done