如何使用终端执行.command 文件?

发布于 2024-12-03 14:50:24 字数 47 浏览 1 评论 0原文

一旦我导航到其中包含 .command 文件的某个目录,如何使用终端执行该文件?

Once I navigate to a certain directory that has a .command file in it, how do I execute that file using Terminal?

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

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

发布评论

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

评论(1

潦草背影 2024-12-10 14:50:24

如果您想像在 Finder 中双击一样执行它,可以使用 open foo.command。这将产生一个新的终端窗口。如果您想“内联”执行它,就可以使用 ./foo.command,因为 .command 文件必须设置 exec 位才能运行。

If you want to execute it as if it was double-clicked in the Finder, you can use open foo.command. This will spawn a new Terminal window. If you want to execute it "inline", as it were, you can just use ./foo.command, as .command files must have the exec bit set in order to function.

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