Mac 使用xxx.command文件双击执行代替shell命令行执行

  • Post author:
  • Post category:其他



如何将终端外壳命令转换为.command文件

如何将以下终端命令转换为

.command

文件,以便直接双击运行该命令

cd /Applications/some\ apps\ to\ run/foo.app/Contents/MacOS
./fooexecutable -arg 12345

只需打开您使用的文本编辑器,并创建一个名为

example.command

的新文件(确保打开文件扩展名,以免创建

example.command.txt

),逐行键入所有要运行的命令:

#!/bin/sh

cd /Applications/some\ apps\ to\ run/foo.app/Contents/MacOS
./fooexecutable -arg 12345

现在执行


chmod a+x ./example.command

现在,您可以使用


./example.command


在shell中运行它,也可以通过finder

双击来运行

它。



版权声明:本文为liuqinhou原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。