- Shell和shell脚本
Shell和shell脚本是两个概念,Shell是用 C 语言编写程序,shell脚本是一种为 shell 编写的脚本程序
- 第一个shell脚本
1.新建一个文件:touch test.sh
2.使脚本可执行:chmod +x test.sh
3.编辑test.sh,内容为:
4.执行脚本./test.sh,会在屏幕输出hello world字符串。#!/bin/bash echo "hello world"
脚本第一行:#!/bin/bash表示这个脚本的解释器,即用/bin/bash这个解释器来解释