当前位置: 技术问答>linux和unix
我在执行shell时,想在shell里直接向mysql数据库插入数据,我该如何写shell。
来源: 互联网 发布时间:2015-10-07
本文导语: 我在执行shell时,想在shell里直接向mysql数据库插入数据 grant all privileges on *.* to cydg@localhost identified by '8411' with grant option; shell语句该如何写 另外,有一写命令执行时需要输入国家地区邮件公司什么的,直接...
我在执行shell时,想在shell里直接向mysql数据库插入数据
grant all privileges on *.* to cydg@localhost identified by '8411' with grant option;
shell语句该如何写
另外,有一写命令执行时需要输入国家地区邮件公司什么的,直接写shell的话会被略去,
我又该何去写shell呢
grant all privileges on *.* to cydg@localhost identified by '8411' with grant option;
shell语句该如何写
另外,有一写命令执行时需要输入国家地区邮件公司什么的,直接写shell的话会被略去,
我又该何去写shell呢
|
#!/bin/sh
echo "
grant all privileges on *.* to cydg@localhost identified by '8411' with grant option;
quit
" | mysql
echo "OK!"
echo "
grant all privileges on *.* to cydg@localhost identified by '8411' with grant option;
quit
" | mysql
echo "OK!"