第3章 Shell脚本入门

第3章  Shell脚本入门

1.脚本格式

脚本以#!/bin/bash开头(指定解释器)

2.第一个Shell脚本:hello world

(1)需求:创建一个Shell脚本,输出hello world

(2)案例实操:

[ ~]# touch helloworld.sh
[ ~]# vim helloworld.sh

在helloworld.sh中输入如下内容

#!/bin/bash
echo "hello world"

(3)脚本的常用执行方式

第一种:采用bash或sh+脚本的相对路径或绝对路径(不用赋予脚本+x权限)

sh+脚本的相对路径

[ ~]# sh helloworld.sh
hello world

sh+脚本的绝对路径

[ ~]# sh /root/helloworld.sh
hello world

bash+脚本的相对路径

[ ~]# bash helloworld.sh
hello world

bash+脚本的绝对路径

[ ~]# bash /root/helloworld.sh
hello world

第二种:采用输入脚本相对路径或绝对路径执行脚本(必须具有可执行权限)

(a)首先要赋予helloworld.sh脚本的+x权限

[ ~]# chmod a+x helloworld.sh

(b)执行脚本

相对路径:

[ ~]# ./helloworld.sh
hello world

绝对路径:

[ ~]# /root/helloworld.sh
hello world

注意:第一种执行方法,本质是bash解释器帮你执行脚本,所以脚本本身不需要执行权限,第二种执行方法,本质是脚本需要自己执行,所以需要执行权限。

3.第二个Shell脚本:多命令处理

(1)需求:

在/root/目录下创建一个名称为a的目录,在a目录中创建一个名称为b.txt的文件,在b.txt文件中增加“The second shell script”。

(2)案例实操:

[ ~]# touch 2.sh
[ ~]# vim 2.sh

在2.sh中输入如下内容:

#!/bin/bash
mkdir /root/a
cd /root/a
touch b.txt
echo "The second shell script" >> b.txt

验证:

[ ~]# bash 2.sh

[ ~]# cat /root/a/b.txt

The second shell script

相关推荐