0
0
mirror of https://github.com/ankidroid/Anki-Android.git synced 2024-09-20 12:02:16 +02:00
Anki-Android/tools/find-broken-strings-variables.sh
2011-01-28 15:08:17 +09:00

25 lines
813 B
Bash
Executable File

#! /bin/sh
# Spot malformed string replacement patterns in Android localization files.
# Hopefully it will prevent this kind of bugs: https://code.google.com/p/ankidroid/issues/detail?id=359
cd ../res
grep -R "%" values* \
| sed -e "s/%/\n%/" \
| grep "%" \
| grep -v " % " \
| grep -v "%<" \
| grep -v "% " \
| grep -v "%s" \
| grep -v "%d" \
| grep -v "%1$s"
#grep -R "%" values* \
#| sed -e "s/%/\n%/" \ # Split lines that contain several expressions
#| grep "%" \ # Filter out lines that do not contain expressions
#| grep -v " % " \ # Lone % character, not a variable
#| grep -v "%<" \ # Same, at the end of the string
#| grep -v "% " \ # Same, at the beginning of the string
#| grep -v "%s" \ # Single string variable
#| grep -v "%d" \ # Single decimal variable
#| grep -v "%1$s" # First variable, string