我可以在不使用 chmod 的情况下使 shell 脚本在 Mac 中可执行吗?
我已经看到我可以在 Mac 中使用 chmod +x 命令来使 shell 脚本可执行。这工作正常,但我注意到每次将此 shell 脚本文件复制到另一台 Mac 计算机时我都必须执行相同的操作。
有没有办法让 shell 脚本在双击时默认可执行,而不需要这样的命令...因为 shell 脚本文件将提供给许多用户,而这样做对其中一些用户来说会很困难?
此致。
I have seen that i can use chmod +x command in Mac to make a shell script executable. This works fine, but i have noticed that i have to do the same thing every time this shell script file is copied to another Mac computer.
Is there a way to make the shell script executable by default when double clicked, without such command ... As the shell script file will be given to many users, and doing this will be hard for some of them ?
Best regards.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果将整个程序打包在 .tar 文件中(或在 .tar.gz 文件中,该文件相同,但经过压缩),则将保留可执行文件“权限”。
If you pack your whole program in a .tar file (or in a .tar.gz-file, which is the same, but compressed), the executable-"permission" will be preserved.
赋予它“.command”扩展名,就可以从 Finder 中执行它。
Give it the '.command' extension and it can be executed from the Finder.