hamletmun Tux's lil' helper
Joined: 13 Jun 2002 Posts: 111 Location: Buenos Aires, Argentina
|
Posted: Wed Jan 26, 2005 4:11 pm Post subject: Convert file names to UTF-8 |
|
|
I moved from eucKR to UTF-8
What I did:
Code: |
export LC_MESSAGES=en_US.UTF-8
export LANG=ko_KR.UTF-8
export LC_CTYPE=ko_KR.UTF-8
|
than used convmv ( http://j3e.de/linux/convmv/man/ ) to change euc-kr file names to utf8
Code: |
convmv --list #look for your codepage's name
./convmv -f euc-kr -t utf8 -r -i --notest /mnt/disk #convert file names from euc-kr to utf8 recursively & interactively
|
|
|