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的主要内容,如果未能解决你的问题,请参考以下文章