正文linux下创建一个可执行脚本IP云V管理员/2022-10-04/3 阅读 10/04提示:扫一扫查出行【扫一扫了解最新限行尾号】复制提示1.touch hello.sh 2.vim hello.sh 键入i 插入#!/bin/sh echo hello world; 键入: esc : wq3.chmod 700 hello.sh 解释-rwx------ (700) -- 仅仅有属主有读、写、运行权限。 4. 运行./hello.sh