Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an directory, which has a lot of subdirectories. those subdirs sometimes even have subdirs. there are source files inside.

How could I use genstrings to go across all these dirs and subdirs?

Let's say I cd to my root dir in Terminal, and then I would type this:

genstrings -o en.lproj *.m

How could I tell it now to look into all these directories? Or would I have to add a lot of relative paths comma separated? how?

share|improve this question

6 Answers

up vote 24 down vote accepted

One method would be:

find ./ -name *.m -print0 | xargs -0 genstrings -o en.lproj

xargs is a nice chunk of shell-foo. It will take strings on standard in and convert them into arguments for the next function. This will populate your genstrings command with every .m file beneath the current directory.

This answer handels spaces in the used path so it is more robust. You should use it to avoid skipping files when processing your source files.

share|improve this answer
This isn't working for me, but the answer from SEG below did work out ok (there's a backslash before *.m). – Martin Jan 28 at 15:44

I don't know exactly why, but Brian's command didn't work for me. This did:

find . -name \*.m | xargs genstrings -o en.lproj
share|improve this answer
1  
Thanks - It was the same with me. – Lukasz Jun 7 '11 at 20:43

This works for me:

find ./ -name \*.m -print0 | xargs -0 genstrings -o en.lproj

Thanks to Brian and Uberhamster.

share|improve this answer
1  
This is the only one that worked for me.. – maq Dec 6 '12 at 23:59

I just added another path to the genstrings command, like this:

genstrings -o en.lproj *.m Classes/*.m

..and it worked out fine!

Btw. a handy thing about genstrings. When you continue developing your app, genstrings has a -a switch that appends new strings to the localized string file.

share|improve this answer
Works, but it doesn't check for duplicate entries from each specified directory. I got a duplicate entry in .strings file with same key and comment. I guess it works like -a flag. – Hlung Mar 26 '12 at 11:04
@Emmanuel that is correct. The -a flag doesn't append new strings-- it appends ALL strings to an existing Localizable.strings file. – jonsibley Sep 4 '12 at 22:37

Try this

genstrings -o English.lproj ./Classes/*.m ./Classes/*.h ./Classes/subclass/*.m

If subfolders aren't too much, this will work perfectly.

share|improve this answer

I had problems generating the strings file for a folder structure where some of the folders had spaces in their names.

I found a nice solution on this site: http://riveroften.com/generate-localizable-strings-file-with-genstrings/

find . -name "*.m" -print0 | xargs -0 genstrings -o "en.lproj"
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.