SyntaxFix
Write A Post
Hire A Developer
Questions
If you want to rename multiple files in a single command - let's say you want to convert all *.txt files - here is the command:
*.txt
find . -name "*.txt" -exec iconv -f WINDOWS-1252 -t UTF-8 {} -o {}.ren \; -a -exec mv {}.ren {} \;