Convert multiple files to utf8 using vim
2014.12.03
The fastest and more efficient way to batch multiple files encoding conversion :
vim +"argdo se fileencoding=utf-8 | w | bnext" +"q" ` find . -type f -name "*.rsp"
+“argdo” : execute the following vim commands for each file (filencode, save and next buffer)