1. mysql 쿼리 리눅스 명령어에서 바로 확인 및 파일로 저장
1 |
[root@xinet ~]# mysql -u xinet -p xinet -e "select * from zipcode" |
2. 파일로 저장시에는
1 |
[root@xinet ~]# mysql -u xinet -p xinet -e "select * from zipcode" | tee zipcode.txt |