EUCKrToUTF8변환

Clunix Wiki
Cezanne (토론 | 기여) 사용자의 2012년 3월 9일 (금) 10:58 버전
(비교) ← 이전 판 | 현재 판 (비교) | 다음 판 → (비교)

우선 단일 파일 변환 스크립트를 다음과 같이 생성(iconv_it.sh)

#!/bin/sh

tmpfile=iconv.$$
inputfile=$1
iconv -f euc-kr -t UTF-8 -o $tmpfile $inputfile
cat $tmpfile > $inputfile
rm $tmpfile

다음과 같이 find 수행

find -H -name '\.svn' -prune -o -name '*.css' -exec /tmp/iconv_it.sh {} \; -print
부서별 위키