Shell.01.shell脚本的格式和执行
Posted X实验室
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Shell.01.shell脚本的格式和执行相关的知识,希望对你有一定的参考价值。
1.标明shell类型:
#!/bin/bash 或 #!/bin/python, etc.
#!/bin/bash #Author: X #Date: 2020-02-07 #Version: 1.0 #Description: For Shell study
2.更改脚本为可执行:
chmod +x yourShell.sh
3.执行
方式1:
./yourShell.sh
方式2:
bash yourShell.sh
4.远程调用脚本在本机执行
curl http://ip/yourShell.sh | bash
以上是关于Shell.01.shell脚本的格式和执行的主要内容,如果未能解决你的问题,请参考以下文章