mysqlクエリー結果をファイルに保存するshellスクリプト
534 ワード
このスクリプトは、既存のファイルを削除した後、バックグラウンドでSQL文を実行して、その実行結果を一定の形式でファイルに書き込みます.
#!/bin/bash
if [ -f "/var/lib/mysql/hell.txt" ]; then
rm -f /var/lib/mysql/hell.txt
echo "delete /var/lib/mysql/hell.txt" >> hell.txt
fi
mysql -uroot -plab <use home;
select YongHuID,XueYuanID into outfile './hell.txt' fields terminated by '|' lines terminated by '\r
' from sns_home_user where YongHuID < 20;
EOF