我该写什么shell脚本来登录mariadb。 Shell脚本在ini文件中读取了一个包含特殊字符(空白,!@)的密码。
操作系统为Ubuntu 18.04
ini文件如下:
user=xxx-xxx-xxx
password=xxx /xxx /xx/ !\@
shell脚本如下:
#!/bin/bash
baseDir="$(cd "$(dirname "$0")" && pwd)"
iniPath="$baseDir/backup.ini"
echo "iniPath is $iniPath"
dbUser="$(grep 'user' $iniPath | cut -d '=' -f 2)"
echo "user is $dbUser"
dbPassword="$(grep 'password' $iniPath | cut -d '=' -f 2)"
echo "password is $dbPassword"
mysql -h localhost -u $dbUser -p'$dbPassword'
如果我输入命令如下: mysql -h本地主机-u xxxxxx -p'xxx / xxx / xx /!@' 在命令行中,它成功记录。 但是,如果我执行shell脚本,则始终会导致拒绝用户访问。
有什么建议吗?谢谢。
答案 0 :(得分:0)
您是否尝试过使用:mysql -h localhost -u $ dbUser -p'echo $dbPassword
'? (特殊字符`在美国像esc键左上角的键盘一样,看起来像后撇号)看起来像带有密码的变量在运行之前没有正确地“打印”到mysql命令中。我建议尝试的其他方法是使用-p“ $ dbPassword”