使用输出hello world!为例。
cd ~/Desktop touch test.sh vim test.sh(输入 echo "hello world!" ) chmod 755 test.sh ./test.sh
输出:hello world!
只需将后缀sh改成command
cp test.sh test.command