插入带有特殊字符的变量

发布于 2024-12-10 20:00:23 字数 175 浏览 0 评论 0原文

如果没有像 ' 或 \ / 这样的特殊字符,以下内容在我的 shell 脚本中有效。

mysql -e" insert into test.mycron values ('$myhost', '$myfile')"

如何让它保存整个变量“$myfile”以及特殊字符?

The following works in my shell script provided there are not special characters like ' or \ /

mysql -e" insert into test.mycron values ('$myhost', '$myfile')"

How do I make it save the entire variable "$myfile" along with special characters?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甜心小果奶 2024-12-17 20:00:23

你必须转义这些字符,例如使用 sed,如下所示:

myhost="$(echo "$myhost" | sed 's/\(['"'"'\]\)/\\&/g')"

you have to escape those characters, for example with sed, something like:

myhost="$(echo "$myhost" | sed 's/\(['"'"'\]\)/\\&/g')"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文