ubuntu 14.04でWindowsの人が作ったzipファイルを解凍
$ unzip sample.zip
したらディレクトリ名が文字化け
直します
$ find sample/ -maxdepth 1 -type d | xargs convmv -f sjis -t utf8
で、どう変更されるか表示できます(まだ変換されない)
変換するには –notest を付けて
$ find sample/ -maxdepth 1 -type d | xargs convmv -f sjis -t utf8 –notest
できました