linux 创建并使用脚本

1.创建脚本: touch test.sh

2.使用vim编辑: vim test.sh 

2.1先 i  进入编辑模式

2.2 插入#!/bin/sh   

echo holle;

2.3 esc

2.4 :wq

3 查看是否含有错误: sh -n test.sh

4 赋予权限: chmod 700 test.sh

5.运行: ./test.sh

你可能感兴趣的:(linux 创建并使用脚本)