Views 12219 Votes 0 Comment 0
Atachment
Attachment '1'
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
아래 iconv 명령을 이용해서 euc-kr로 작성된 문서를 변환할 수 있다.
euc-kr 형식으로 작성된 [target file]을 utf-8 형식으로 변환하여 [dest file]에 저장하는 명령이다.
$ iconv  -f  euc-kr  -t  utf-8  [target file]  [dest file]

하지만, 파일이 많을 때는 어떻게 해야 할까?
아래와 같은 명령어를 쉘스크립트(Shell Script)로 만들어서 해결할 수 있다.
find 명령어로 찾은 *.php 파일들을 euc-kr에서 utf-8로 변환하는 쉘 스크렙트
#!/bin/bash
find . -name "*.php" | while read fn; do
    cp ${fn} ${fn}.bak
    iconv -f euc-kr -t utf-8 -c ${fn}.bak > ${fn}
    rm ${fn}.bak
done

확장자가 php가 아니라면, 위의 내용 중 *.php를 원하는 확장자로 바꾸면 된다.
(ex. java, text 등)

이 부분을 argument로 바꿔서 만들면 더 편리할 듯..
그건 나중에..
한가지 더.. 아래는 실제로 사용하고 있는 샘플..
FROM=euc-kr
TO=utf-8
ICONV="iconv -c -f $FROM -t $TO "

find ./ -type f -name "*.htm*" | while read fn; do
    cp ${fn} ${fn}.bak
    echo $ICONV ${fn}
    $ICONV < ${fn}.bak > ${fn}
    rm ${fn}.bak
done

?

List of Articles
No. Category Subject Author Date Views
154 System/OS [linux] iptables 초간단 세팅 스크립트 hooni 2017.09.26 1237
153 System/OS [linux] man 명령어 뽀개기.. hooni 2003.04.23 8723
152 System/OS [linux] Masquerade 가상 ip분할기법 hooni 2003.04.23 47936
151 System/OS [linux] Oracle8.1.6, Mysql+PHP+Zend Optimizer+APACHE+Tomcat(jsp,servlet)+IMAP+gd hooni 2003.04.23 32452
150 System/OS [linux] Proftpd 설치 가이드 hooni 2003.04.23 13021
149 System/OS [linux] ProFTPD 타임아웃 설정 hooni 2003.04.23 12851
148 System/OS [linux] resolv.con 초기화 되는 문제 hooni 2014.04.05 4616
147 System/OS [linux] root 전환시 패스워드 없이 su 사용하기 hooni 2013.12.22 12685
146 System/OS [linux] root도 삭제하지 못하는 파일 속성 hooni 2003.04.23 12412
145 System/OS [linux] sendmail 설정/사용 hooni 2003.04.23 14570
144 System/OS [linux] split 명령어 hooni 2014.03.11 4305
143 System/OS [linux] SSH에 대한 기본 설명과 설치/설정 hooni 2013.04.23 10493
142 System/OS [linux] ssh에서 원격 파일 전송하기.. hooni 2013.04.23 14157
141 System/OS [linux] The Ultimate Wget Download Guide With 15 Awesome Examples hooni 2020.05.26 799
140 System/OS [linux] vi 편집기 간단한 명령과 환경설정 hooni 2003.04.23 11359
139 System/OS [linux] wget 명령 사용 예제 hooni 2020.05.26 1434
Board Pagination Prev 1 2 3 4 5 6 ... 13 Next
/ 13