linux 创建shell脚本并执行

linux | 2019-09-13 10:02:39

linux 创建shell脚本并执行的方式:

1.创建shell脚本touch,文件名或后缀都随意
touch hello.sh

2.编辑脚本
vim hello.sh 
键入i 
插入#!/bin/sh
     echo hello world;
键入: 
    esc 
    :
    wq
3.shell脚本授权
chmod 700 hello.sh

4.执行脚本
./hello.sh

登录后即可回复 登录 | 注册
    
关注编程学问公众号