学习笔记,非原创
1. 如何运行脚本1.1. 作为可执行程序#!/bin/bash
chmod +x ./test.sh # 使脚本具有执行权限
./test.sh # 执行脚本
2021-01-21