1.创建脚本: touch test.sh2.使用vim编辑: vim test.sh 2.1先 i 进入编辑模式2.2 插入#!/bin/sh echo holle;2.3 esc2.4 :wq3 查看是否含有错误: sh -n test.sh4 赋予权限: chmod 700 test.sh5.运行: ./test.sh