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:48:04 +09:00

27 lines
901 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%/g' \
| grep '%' \
| grep -v ' % ' \
| grep -v '%<' \
| grep -v '% ' \
| grep -v '%s' \
| grep -v '%d' \
| grep -v '%[0-9]$s' \
| grep -v '%[0-9]$d'
#grep -R '%' values* \
#| sed -e 's/%/\n%/g' \ # 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 '%[0-9]$s' \ # Multiple string variable
#| grep -v '%[0-9]$d' # Multiple deceimal variable