Skip to content

Instantly share code, notes, and snippets.

@bumper314
Created October 21, 2016 13:16
Show Gist options
  • Save bumper314/b15a6442cd0a15e9e862913d1ad1c7ae to your computer and use it in GitHub Desktop.
Save bumper314/b15a6442cd0a15e9e862913d1ad1c7ae to your computer and use it in GitHub Desktop.
Regenerate strings files from source (code and xibs)
find . -name "*.xib" | xargs -t -I '{}' ibtool --generate-strings-file '{}'.strings '{}'
find . \( -name "*.c" -o -name "*.m" -o -name "*.mm" \) -print0 | xargs -0 genstrings -o .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment