#vi firt.sh 创建脚本
#!/bin/sh 第一行固定格式
var="hello world" 定义一个变量 =两边不能有空格
echo $var 用$接变量,echo输出终端
:wq 退出文本
#sh .firt.sh 直接运行脚本
#chmod 771 firt.sh 也可以设置可执行权限在运行脚本
#./firt.sh 运行脚本
#vi firt.sh 创建脚本
#!/bin/sh 第一行固定格式
var="hello world" 定义一个变量 =两边不能有空格
echo $var 用$接变量,echo输出终端
:wq 退出文本
#sh .firt.sh 直接运行脚本
#chmod 771 firt.sh 也可以设置可执行权限在运行脚本
#./firt.sh 运行脚本