Files
AndroidJava/afwall/scripts/convert.sh
T
coco 7846a45f2c a
2026-07-03 15:47:27 +08:00

16 lines
349 B
Bash

# Convert exported crowdin files to android format
for d in */ ; do
while read line
do
key=`echo "$line" | cut -d'=' -f1`
value=`echo "$line" | cut -d'=' -f2`
if [ $key"/" == $d ]
then
mv $d $value
fi
done < convert.properties
done
#delete Playstore.txt files
find . -name "Playstore.txt" -print0 | xargs -0 rm -rf