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 | |
#needs aspell installed, used to check spelling | |
#brew install aspell | |
rm spellingErrors.txt #remove existing spellingErrors.txt file | |
cd .. #need to run genstrings on parent directory | |
find ./ -name "*.swift" -print0 -o -name "*.m" -print0 | xargs -0 genstrings -o en.lproj | |
cd en.lproj | |
iconv -f UTF-16le -t UTF-8 Localizable.strings > allStrings.txt #convert to utf-8 |