Shell脚本入门
1.脚本格式
脚本以#!/bin/bash开头,指定解析器
用个例子说明:
touch hello.sh
vim hello.sh
#!/bin/bash
echo helloworld Tomas
按esc :wq,保存后
执行 sh hello.sh 或者 bash hello.sh 即可【使用sh或者bash调用脚本,不需要执行权限】
但是使用 ./hello.sh就会提示权限不够,这个时候是自己调用自己,所以文件需要有执行权限
chmod 777 hello.sh 修改权限
后执行
成功