Context: I have installed the Command Line Tools separately as the conventional method of "xCode->Preferences->Downloads->Components->Command Line Tools->Install" didn't work for me.
Purpose: I need to implement internationalization/localization on my application and want to use genstrings for creating the Localizable.Strings files.
Problem: When I try to use the Terminal and type command like
$ find . -name *.m | xargs genstrings -o en.lproj
I Get:
couldn't connect to output directory en.lproj
How should I specify the path for directory? Also, I might need to specify the path for some *.m files as well.
Note: I was suggested to read the genstrings manual but I am not sure how to work with a particular xCode project while using the Terminal.