码迷,mamicode.com
首页 > 系统相关 > 详细

Shell.01.shell脚本的格式和执行

时间:2020-02-07 12:56:59      阅读:77      评论:0      收藏:0      [点我收藏+]

标签:格式   for   bash   col   本机   脚本   family   shell脚本   author   

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脚本的格式和执行

标签:格式   for   bash   col   本机   脚本   family   shell脚本   author   

原文地址:https://www.cnblogs.com/initx/p/12272476.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!