linux执行shell脚本
时间: 2023-04-28 18:00:05 浏览: 150
linux shell脚本
在Linux系统中执行shell脚本的方法有多种,其中常用的有以下几种:
1. 直接在终端中运行脚本文件,例如: `./test.sh`
2. 使用`bash`命令运行脚本文件,例如: `bash test.sh`
3. 使用`sh`命令运行脚本文件,例如: `sh test.sh`
在执行脚本之前,需要给脚本文件添加可执行权限,可以使用`chmod +x test.sh`来添加。
阅读全文