使用shell命令操作数据库

Posted 叫我大头

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用shell命令操作数据库相关的知识,希望对你有一定的参考价值。

使用mysql的-e参数可以执行各种sql的(创建,删除,增,删,改、查)等各种操作

用法

mysql  -uxxx    –pxxx   -e  “mysql 命令”

当然还可以使用 如下写法

mysql  -e  -uxxx    –pxxx    “mysql 命令”

实践出真知

[[email protected] ~]# mysql -e "show databases;" -uroot -ppenghui110 >test.txt
[[email protected] ~]# ls
databases_backup_20170411172702  lnmp1.3-full  lnmp-install.log  test.txt
[[email protected] ~]# cat test.txt 
Database
information_schema
blog
mysql
performance_schema
question
wordpress
yii2
[[email protected] ~]# mysql -uroot -ppenghui110  -e "show databases;"  >a.txt
[[email protected] ~]# cat a.txt 
Database
information_schema
blog
mysql
performance_schema
question
wordpress
yii2

参考文档:http://blog.csdn.net/feeltouch/article/details/46643065

以上是关于使用shell命令操作数据库的主要内容,如果未能解决你的问题,请参考以下文章

VSCode自定义代码片段15——git命令操作一个完整流程

Linux shell中运行命令后加上字符“&”的作用

Shell使用小记

代码片段:Shell脚本实现重复执行和多进程

使用shell命令操作数据库

shell选取部分内容