Created
March 25, 2018 19:37
-
-
Save cerisier/ab83a0e1b9f56883640bc10afb804a07 to your computer and use it in GitHub Desktop.
Ensure no unterminated quotes in cldr strings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -eux | |
for i in `find . -iname strings_cldr.xml`; do cat $i | tr -cd "'\n" | awk 'length%2==1 {print NR, $0}'; done; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment