创建alias
alias db='mysql -hlocalhost -uroot -p123456'
创建mysql语句的执行文件: mysql.txt
select * from test_db.test_table
在Linux命令行中输入
$ db < /path/to/mysql.txt | cat > store.log
最终store.log
中的数据即是select * from db.table
的结果。
: ) 太好用了。
参考
鹏哥的代码。
创建alias
alias db='mysql -hlocalhost -uroot -p123456'
创建mysql语句的执行文件: mysql.txt
select * from test_db.test_table
在Linux命令行中输入
$ db < /path/to/mysql.txt | cat > store.log
最终store.log
中的数据即是select * from db.table
的结果。
: ) 太好用了。
参考
鹏哥的代码。