如何使用终端执行.command 文件?
一旦我导航到其中包含 .command 文件的某个目录,如何使用终端执行该文件?
Once I navigate to a certain directory that has a .command file in it, how do I execute that file using Terminal?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想像在 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.