shell 操作mysql

Posted 那天ws

tags:

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

1、连接

1 #!/bin/bash
2 user="root"
3 password="XXXXXX"
4 sql = `mysql -u$user -p$password << EOF 2>dev/null
5 use mysql;
6 select * from user;
7 exit;
8 EOF`
9 echo $sql

 

以上是关于shell 操作mysql的主要内容,如果未能解决你的问题,请参考以下文章

shell操作mysql

shell脚本连接读写操作mysql数据库实例

如何用shell脚本实现mysql数据库的操作

shell脚本操作mysql数据库

用于确保在任何给定时间仅运行一个 shell 脚本的 shell 片段 [重复]

shell 脚本 片段