创建一个脚本
在目录中创建一个脚本文件,并写入第一个简单的脚本程序
touch test.sh// 创建脚本文件
vim test.sh// 写入
test.sh
#!/bin/bash
echo "hello world"
echo "what is your name?"
read person
echo "hello,$person"
保存退出
运行脚本文件(不是一个进程)
为test.sh添加执行权限
chmod +x ./test.sh //为脚本添加执行权限
./test.sh //执行脚本文件
/bin/bash test.sh// 绝对路径执行脚本文件 这种方法第一行可以不写#!/bin/bash/,写了也没用
运行脚本文件(同一个进程)
source ./test.sh
source test.sh
. ./test.sh
. test.sh