Skip to content

Instantly share code, notes, and snippets.

View shanmugam105's full-sized avatar
🎯
Focusing

Shanmugarajeshwaran R shanmugam105

🎯
Focusing
  • Sparkout Tech Solution
  • Coimbatore
View GitHub Profile
@asifmujteba
asifmujteba / genstrings commands
Created May 29, 2015 12:06
genstring iOS generate strings for localization
To generate strings from *.m files located in the current folder execute:
$ genstrings -o en.lproj *.m
To generate strings from *.m files located in the current folder + subfolders execute:
$ find . -name \*.m | xargs genstrings -o en.lproj
To generate strings from *.m files located in the current folder + subfolders but excluding Folder1 execute:
$ find . -name \*.m -not -path "./Folder1/*" -print0 | xargs -0 genstrings -o en.lproj -1