목록utf8 (2)
Sa nagbi imuru C
euc-kr 에서 utf-8 변환 스크립트 개선
find 명령어를 이용해 서브디렉토리까지 한번에 euc-kr 에서 utf-8로 변환해 주는 스크립트 #!/bin/bash FROM=euc-kr TO=utf-8 ICONV="iconv -f $FROM -t $TO" # Convert ; *.php 대신 "*"를 주면 모든 확장자에 대해 변환 시도 find dir/ -type f -name "*.php" | while read fn; do cp ${fn} ${fn}.bak $ICONV ${fn} rm ${fn}.bak done관련글 : Mysql euc-kr 에서 utf-8로 변환
ardor../linux.
2007. 9. 2. 19:59
Mysql euc-kr 에서 utf-8로 변환
1. 데이터 백업 소스백업 #tar cvzpf [백업파일이름.tar.gz ] [백업할 디렉토리] euc-kr로 된 db를 dump 받는다. # mysqldump -u[id] -p [db] > dump.sql 2. 데이터 전송 3. 새로운 db 작성 후 사용자 권한 허가 $ mysql -u adminusername -p Enter password: Welcome to the MySQL monitor. Commands end with ; or g. Your MySQL connection id is 5340 to server version: 3.23.54 Type ‘help;’ or ‘h’ for help. Type ‘c’ to clear the buffer. mysql> CREATE DATABASE data..
ardor../linux.
2007. 9. 2. 06:22