sh可执行脚本命令 2023-08-13 shell 0 评论 字数统计: 46(字) 阅读时长: 1(分) 一、创建.sh文件1vi hello.sh 二、编写脚本内容12#!/bin/bashecho "Hello World!" 三、添加执行权限123chmod +x hello.sh或者chmod 755 hello.sh 四、执行脚本1./hello.sh