Hi - I have about 2000 text files I need to convert from MacRoman encoding to UTF-8. I discovered that I can do this using the iconv command like this: iconv -f MACROMAN -t UTF-8 *.txt > results.txt but this concatenates all of the converted files into a single file. What I want is to retain the...