ChatTwo/fix_resources.sh
2022-09-02 19:37:48 -04:00

7 lines
191 B
Bash
Executable File

#!/bin/sh
for f in ChatTwo/Resources/Language.resx ChatTwo/Resources/Language.*.resx; do
sed -i 's/ xml:space="preserve"//g' "$f"
xmlstarlet fo -e utf-8 -s 4 "$f" | sponge "$f"
done