Windows下怎么执行shell脚本

时间:2023-01-05 11:07:38

1、在windows下想要执行shell脚本,需要使用到"Git Bash",所以我们需要先安装Git。

Windows下怎么执行shell脚本

2、查看Git环境变量是否配置,没有配置需要配置(我这里安装Git时自动配置了)

Windows下怎么执行shell脚本

3、随意目录,打开"Git Bash"窗口,创建一个shell脚本文件。

如:touch test.sh

Windows下怎么执行shell脚本

4、创建成功后输入内容。

如:echo "hello world"

Windows下怎么执行shell脚本

5、运行脚本,有三种运行方式:

(1)./test.sh

(2)sh test.sh

(3)/bin/sh test.sh

Windows下怎么执行shell脚本