第3章 Shell脚本入门

Posted 程翔北

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第3章 Shell脚本入门相关的知识,希望对你有一定的参考价值。

第3章  Shell脚本入门

1.脚本格式

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

2.第一个Shell脚本:hello world

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

(2)案例实操:

[root@localhost ~]# touch helloworld.sh
[root@localhost ~]# vim helloworld.sh

  在helloworld.sh中输入如下内容

#!/bin/bash
echo "hello world"

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

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

  sh+脚本的相对路径

[root@localhost ~]# sh helloworld.sh
hello world

  sh+脚本的绝对路径

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

  bash+脚本的相对路径

[root@localhost ~]# bash helloworld.sh
hello world

  bash+脚本的绝对路径

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

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

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

[root@localhost ~]# chmod a+x helloworld.sh

(b)执行脚本

  相对路径:

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

  绝对路径:

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

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

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

(1)需求:

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

(2)案例实操:

[root@localhost ~]# touch 2.sh
[root@localhost ~]# vim 2.sh

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

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

  验证:

[root@localhost ~]# bash 2.sh

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

The second shell script

以上是关于第3章 Shell脚本入门的主要内容,如果未能解决你的问题,请参考以下文章

《shell编程实战》第2章shell脚本入门

《shell编程实战》第2章shell脚本入门(下)

第14章,Shell脚本编程进阶

Shell最最基础教程案例讲解值得收藏系列

第14章练习,shell脚本编程实例-1

持续更新中Linux命令行与Shell脚本编程大全(第3版)读书笔记12-20章