如何在cygwin中有效地使用引号?

发布于 2024-12-24 17:00:13 字数 303 浏览 0 评论 0原文

2.bat calls 3.bash "cmd /c "path to command with spaces""

3.bash 包含

cmd="$1"
"$cmd"

我正在使用 cmd /c 命令,因为当 bash 脚本运行时,它无法将该命令识别为可执行文件,因此我必须使用 cmd /c 启动它。然而,这会产生另一个引用问题。

+ cmd='cmd /c "c:\program'

如何解决这个问题?

2.bat calls 3.bash "cmd /c "path to command with spaces""

3.bash contains

cmd="$1"
"$cmd"

I'm using cmd /c command because when the bash script runs it doesn't recognise that command as executable, so I have to launch it with cmd /c. However, this creates another problem with quoting.

+ cmd='cmd /c "c:\program'

How to fix this?

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

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

发布评论

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

评论(1

一花一树开 2024-12-31 17:00:13

您应该转义内部引号:

3.bash "cmd /c \"path to command with spaces\""

您也可以使用命令 cygpath 而不是 cmd

#3.bash
"`cygpath -u "$1"`"

和命令

3.bash "path to command with spaces"

You should escape inner quotes:

3.bash "cmd /c \"path to command with spaces\""

Also you may use command cygpath instead of cmd

#3.bash
"`cygpath -u "$1"`"

and the command

3.bash "path to command with spaces"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文