cmd怎么运行shell脚本
时间: 2024-05-10 08:19:22 浏览: 312
shell 脚本
在 Windows 系统下,可以使用 Git Bash 或 Cygwin 等工具来运行 shell 脚本。这些工具会提供类似 Linux 终端的环境,可以直接在其中运行 shell 脚本。
在 Git Bash 或 Cygwin 中打开终端,进入 shell 脚本所在的目录,然后输入以下命令即可运行:
```
sh script.sh
```
其中,`script.sh` 是要运行的 shell 脚本文件名。如果当前目录下没有权限运行该脚本,可以使用 `chmod +x script.sh` 命令为其添加执行权限。
如果你想在 Windows 命令提示符(CMD)中运行 shell 脚本,可以安装 Windows 版本的 Git,然后在 Git Bash 中运行上述命令。
阅读全文