xcode - Batch localize using IBTools? -


is there way run ibtools on bunch of nib files single command? i'm trying extract strings nibs. supposed run ibtools once each nib?

i find tedious run ibtools many times. (i have 9 nib files. worse...)

i don't think ibtool can take multiple files argument. way see write bash script perform task.

#!/bin/bash  find . -name "*.xib" | while read filename;   ibtool --export-strings-file $filename.strings $filename done 

Comments