如何在脚本 ssh 命令中使用单引号和双引号
- 2024-10-25 08:42:00
- admin 原创
- 60
问题描述:
我正在编写一个小型 bash 脚本,并想通过 ssh 执行以下命令
sudo -i mysql -uroot -pPASSWORD --execute "select user, host, password_last_changed from mysql.user where password_last_changed <= '2016-9-00 11:00:00' order by password_last_changed ASC;"
不幸的是这个命令包含单引号和双引号所以我不能这样做
ssh user@host "command";
解决这个问题的推荐方法是什么?
解决方案 1:
使用 heredoc
您只需在 shell 的标准输入上传递您的确切代码即可:
ssh user@host bash -s <<'EOF'
sudo -i mysql -uroot -pPASSWORD --execute "select user, host, password_last_changed from mysql.user where password_last_changed <= '2016-9-00 11:00:00' order by password_last_changed ASC;"
EOF
请注意,上述操作不执行任何变量扩展 - 由于使用了<<'EOF'
(vs <<EOF
),它将代码准确地传递给远程系统,因此变量扩展("$foo"
)将在远程端进行扩展,仅使用远程 shell 可用的变量。
这还会消耗包含要运行的脚本的 heredoc 的 stdin —— 如果您需要将 stdin 用于其他目的,则可能无法按预期工作。
动态生成 eval-safe 命令:数组版本
您还可以让 shell 本身为您执行引用。假设您的本地 shell 是 bash 或 ksh:
#!/usr/bin/env bash
# ^^^^ - NOT /bin/sh
# put your command into an array, honoring quoting and expansions
cmd=(
sudo -i mysql -uroot -pPASSWORD
--execute "select user, host, password_last_changed from mysql.user where password_last_changed <= '2016-9-00 11:00:00' order by password_last_changed ASC;"
)
# generate a string which evaluates to that array when parsed by the shell
printf -v cmd_str '%q ' "${cmd[@]}"
# pass that string to the remote host
ssh user@host "$cmd_str"
需要注意的是,如果你的字符串扩展为包含不可打印字符的值,则$''
在 的输出中可能会使用不可移植的引用形式printf '%q'
。为了以可移植的方式解决这个问题,你实际上最终会使用一个单独的解释器,例如 Python:
#!/bin/sh
# This works with any POSIX-compliant shell, either locally or remotely
# ...it *does* require Python (either 2.x or 3.x) on the local end.
quote_args() { python -c '
import pipes, shlex, sys
quote = shlex.quote if hasattr(shlex, "quote") else pipes.quote
sys.stdout.write(" ".join(quote(x) for x in sys.argv[1:]) + "
")
' "$@"; }
ssh user@host "$(quote_args sudo -i mysql -uroot -pPASSWORD sudo -i mysql -uroot -pPASSWORD)"
动态生成 eval-safe 命令:函数版本
您还可以将命令封装在函数中,并告诉您的 shell 序列化该函数。
remote_cmd() {
sudo -i mysql -uroot -pPASSWORD --execute "select user, host, password_last_changed from mysql.user where password_last_changed <= '2016-9-00 11:00:00' order by password_last_changed ASC;"
}
ssh user@host bash -s <<<"$(declare -f remote_cmd); remote_cmd"
bash -s
如果您确信远程 shell 默认是 bash,则不需要使用和传递 here-string 或未加引号的 heredoc 中的代码 —— 如果是这种情况,您可以改为在命令行上传递代码(bash -s
代替)。
如果远程命令需要传递一些变量,请declare -p
使用与上面相同的方式远程设置它们declare -f
。
相关推荐
热门文章
项目管理软件有哪些?
- 2024年20款好用的项目管理软件推荐,项目管理提效的20个工具和技巧
- 2024年开源项目管理软件有哪些?推荐5款好用的项目管理工具
- 项目管理软件有哪些?推荐7款超好用的项目管理工具
- 项目管理软件哪个最好用?盘点推荐5款好用的项目管理工具
- 项目管理软件有哪些最好用?推荐6款好用的项目管理工具
- 项目管理软件有哪些,盘点推荐国内外超好用的7款项目管理工具
- 2024项目管理软件排行榜(10类常用的项目管理工具全推荐)
- 项目管理软件排行榜:2024年项目经理必备5款开源项目管理软件汇总
- 2024年常用的项目管理软件有哪些?推荐这10款国内外好用的项目管理工具
- 项目管理必备:盘点2024年13款好用的项目管理软件
热门标签
云禅道AD