在Linux的系统Shell脚本中使用if语句的方法

Bourne Shell 的 if 语句和大部分编程语言一样 - 检测条件是否真实,如果条件为真,shell 会执行这个 if 语句指定的代码块,如果条件为假,shell 就会跳过 if 代码块,继续执行之后的代码。



if 语句的语法:

代码如下:

if [ 判断条件 ]

then

command1

command2

……..

last_command

fi

Example:

#!/bin/bash

number=150

if [ $number -eq 150 ]

then

echo "Number is 150"

fi

if-else 语句:

除了标准的 if 语句之外,我们还可以加入 else 代码块来扩展 if 语句。这么做的主要目的是:如果 if 条件为真,执行 if 语句里的代码块,如果 if 条件为假,执行 else 语句里的代码块。

语法:

代码如下:

if [ 判断条件 ]

then

command1

command2

……..

last_command

else

command1

command2

……..

last_command

fi

Example:

代码如下:

#!/bin/bash

number=150

if [ $number -gt 250 ]

then

echo "Number is greater"

else

echo "Number is smaller"

fi

If..elif..else..fi 语句 (简写的 else if)

Bourne Shell 的 if 语句语法中,else 语句里的代码块会在 if 条件为假时执行。我们还可以将 if 语句嵌套到一起,来实现多重条件的检测。我们可以使用 elif 语句(else if 的缩写)来构建多重条件的检测。

语法 :

代码如下:

if [ 判断条件1 ]

then

command1

command2

……..

last_command

elif [ 判断条件2 ]

then

command1

command2

……..

last_command

else

command1

command2

……..

last_command

fi

Example :

代码如下:

#!/bin/bash

number=150

if [ $number -gt 300 ]

then

echo "Number is greater"

elif [ $number -lt 300 ]

then

echo "Number is Smaller"

else

echo "Number is equal to actual value"

fi

多重 if 语句 :

If 和 else 语句可以在一个 bash 脚本里相互嵌套。关键词 “fi” 表示里层 if 语句的结束,所有 if 语句必须使用 关键词 “fi” 来结束。

基本 if 语句的嵌套语法:

代码如下:

if [ 判断条件1 ]

then

command1

command2

……..

last_command

else

if [ 判断条件2 ]

then

command1

command2

……..

last_command

else

command1

command2

……..

last_command

fi

fi

Example:

代码如下:

#!/bin/bash

number=150

if [ $number -eq 150 ]

then

echo "Number is 150"

else

if [ $number -gt 150 ]

then

echo "Number is greater"

else

echo "'Number is smaller"

fi

fi

(0)

相关推荐

  • Linux shell脚本中连接字符串的方法

    这篇文章主要介绍了Linux shell脚本中连接字符串的方法,大家参考使用吧 如果想要在变量后面添加一个字符,可以用一下方法: 代码如下: $value1=home $value2=${value1 ...

  • win7系统在word中插入excel公式的方法

    win7系统如何在word中插入excel公式?因为工作的需要,有时候我们在操作win7系统word文档时需插入excel公式,但是不知道如何操作?word成为大家办公中不可缺少的一个软件了,大家可在 ...

  • Win10系统设备管理器中的黄色!处理方法(二)

    Windows10系统安装完成后,打开设备管理器,发现其它设备中两项有黄色!,一项是802.11nWLAN,另一项是:PCI简单通讯控制器. 在Win10系统设备管理器中的黄色!处理方法(一)中,图文 ...

  • 如何在shell脚本中编写函数

    shell脚本能否和java.c.android语言一样编写函数呢,答案是肯定的,小编就带大家进入shell脚本的函数世界. 操作方法 01 执行"nano function.sh" ...

  • linux chsh命令参数及用法详解(linux设置系统shell命令)

    使用权限:所有使用者 命令:chsh 用法:shell>> chsh 说明:更改使用者 shell 设定 范例: shell>> chsh Changing fihanging ...

  • win10系统清理设备驱动器中的多余选项的方法教程

    在我们的印象中,图片和文件似乎是两个不同的格式,两者之间并没有什么联系,他们的作用也是各不相同的,这个道理虽然是正确的,但是也不完全对.小编给大家举个例子,现在大家对于电脑的安全问题越来越上心了,各种 ...

  • Linux shell脚本基础学习详细介绍(完整版)

    Linux shell脚本基础学习这里我们先来第一讲,介绍shell的语法基础,开头、注释、变量和 环境变量,向大家做一个基础的介绍,虽然不涉及具体东西,但是打好基础是以后学习轻松地前提。 1. Li ...

  • Linux Shell脚本系列教程(一):Shell入门

    这篇文章主要介绍了Linux Shell脚本系列教程(一):Shell入门,本文讲解了Shell简介、Shell基本操作、如何打开Shell终端、Shell脚本的概念、如何运行Shell脚本、Shel ...

  • linux shell环境以及shell脚本

    linux shell环境以及shell脚本