最后更新于1个月前
Shell 是命令行解释器
shall 很多种类
Linux 中是 Bash, windows 中的 Bash 是 wsl 或者 Git bash
创建 hello.sh
打开 Git Bash
hello.sh
#!/bin/bash echo "Hello Shell"
执行 ./hello.sh 或 bash hello.sh
./hello.sh
bash hello.sh