在 bash 脚本中统一运行

发布于 2024-11-17 18:29:48 字数 385 浏览 2 评论 0原文

您好,当我在终端上运行命令时,

unison dir1 dir2 -ignore 'Regex dir3' -batch -force dir1 -confirmbigdel=false

它会正常运行。但是当我尝试在 bash 脚本中运行它时,它就像这样

a="-ignore 'Regex dir3'"
unison dir1 dir2 "$a" -batch -force dir1 -confirmbigdel=false

说的

一致:未知选项`-ignore'正则表达式 c''

我怎样才能解决这个问题?谢谢... 。

Hi when I run a command on terminal like that

unison dir1 dir2 -ignore 'Regex dir3' -batch -force dir1 -confirmbigdel=false

it runs normally. But when I try to run it in a bash script it like that

a="-ignore 'Regex dir3'"
unison dir1 dir2 "$a" -batch -force dir1 -confirmbigdel=false

it says that

unison: unknown option `-ignore 'Regex
c''

How can I solve that problem? Thank you...
.

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

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

发布评论

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

评论(1

默嘫て 2024-11-24 18:29:48

您需要使用数组而不是字符串。这样,当您“取消引用”时,shell 将看到正确的单词数 (2)。

a=( -ignore 'Regex dir3' )
unison dir1 dir2 "${a[@]}" -batch -force dir1 -confirmbigdel=false

You need to use an array instead of a string. That way, when you "dereference", the shell will see the right number of words (2).

a=( -ignore 'Regex dir3' )
unison dir1 dir2 "${a[@]}" -batch -force dir1 -confirmbigdel=false
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文