1.touch hello.sh
2.vim hello.sh
键入i
插入#!/bin/sh
echo hello world;
键入:
esc
:
wq
3.chmod 700 hello.sh 解释-rwx------ (700) -- 仅仅有属主有读、写、运行权限。
4. 运行./hello.sh
时间: 2024-10-10 09:26:18
1.touch hello.sh
2.vim hello.sh
键入i
插入#!/bin/sh
echo hello world;
键入:
esc
:
wq
3.chmod 700 hello.sh 解释-rwx------ (700) -- 仅仅有属主有读、写、运行权限。
4. 运行./hello.sh