View Single Post
zehjotkah's Avatar
Posts: 2,361 | Thanked: 3,746 times | Joined on Dec 2007 @ Berlin - Love this city!!
#64
if you named the source file 01.txt - 32.txt you can translate every level into one file with
Code:
for f in *.txt;do ./translevel `echo $f |cut -d "." -f 1` $f >> FILENAME; done