User talk:Jackard/Accent Removal
From Dwarf Fortress Wiki
Discussion Thread --Jackard 19:15, 26 July 2008 (EDT)
Troubleshooting
Step by step instruction produces unexpected results because several characters in posted command batch file are getting lost in translation from ASCII into UTF-8 (on the wiki) and back to ASCII after copy-pasting them.
Download correct replace script and use it instead of copy-pasting method suggested in second step. Nophotoavailable 20:28, 1 August 2008 (EDT)
- Thanks for this. --Jackard 18:47, 10 August 2008 (EDT)
Linux FTW
As all modern Linuxen have iconv installed by default, doing this is very easy. Use this command in a normal Bash shell:
for f in language_*.txt; do iconv -f CP437 -t ASCII//TRANSLIT <$f >$f.new; done; rename ".new" "" *.new;
