基础知识#!/bin/bash (这个是shell脚本的解释说明)
echo "Hello World !"
运行shell脚本我们先给脚本执行权限,然后再执行脚本
chmod +x ./test.sh #使脚本具有执行权限
./tes
2020-07-14