2023년 4월 28일 금요일

리눅스에서 파일 인코딩 확인 및 인코딩 변환



1. 리눅스에서 파일 인코딩 확인

file -bi 파일명

ex) file -bi aaa.xml
결과 : text/x-c++; charset=utf-8


2. 인코딩 변환
EUC-KR -> UTF-8 파일 인코딩 변경
iconv -c -f euc-kr -t utf-8 aaa.xml> aaa.xml


3. 실제 변경
find . -type f -exec iconv -f euc-kr -t utf-8 '{}' '>' '{}'.utf8 '&&' mv '{}'.utf8 '{}' ';'

source: https://heum-story.tistory.com/58

댓글 없음:

댓글 쓰기