12 lines
136 B
Bash
12 lines
136 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
for i in $1/*.xib
|
||
|
do
|
||
|
xib=`basename "$i"`
|
||
|
strings="$2/$xib.strings"
|
||
|
|
||
|
ibtool "$i" --generate-strings-file "$strings"
|
||
|
done
|
||
|
|
||
|
|