mysql输出信息保留++--边框方法

我这方法是通过expect实现的。

安装expect

yum install -y expect


操作:

[root@ln-slave ~]# cat test.sh
/usr/local/mysql/bin/mysql -e "select version();"
[root@ln-slave ~]# ll test.sh
-rwxr-xr-x 1 root root 50 08-13 16:44 test.sh
[root@ln-slave ~]# sh test.sh
+------------+
| version()  |
+------------+
| 5.1.49-log |
+------------+
[root@ln-slave ~]# sh test.sh >a.txt  #直接这样是没有边框的。
[root@ln-slave ~]# cat a.txt
version()
5.1.49-log
[root@ln-slave ~]# cat mysql.exp  #通过expect实现
#!/usr/bin/expect -f
set timeout -1
spawn  ./test.sh
expect
[root@ln-slave ~]# expect mysql.exp >a.txt
[root@ln-slave ~]# cat a.txt
spawn ./test.sh  #多了这行,内容到手,删除即可。
+------------+
| version()  |
+------------+
| 5.1.49-log |
+------------+


本文出自 “Chocolee” 博客,请务必保留此出处http://chocolee.blog.51cto.com/8158455/1539586

mysql输出信息保留++--边框方法,布布扣,bubuko.com

mysql输出信息保留++--边框方法

上一篇:2014年软考数据库系统工程师知识点讲解(2)


下一篇:数据库ddl及dml的基本操作