I have bunch of files are encoded with GB2312, now I want to convert them into UTF-8, so I apply the code below:
find . | xargs iconv -f GB2312 -t UTF-8
It successfully convert them but the output is printed in console.
Here I want them to be saved in their original files, how do I make it ?