linux 条件判断式
1.利用if ...then
if [ 判断条件 ];then
指令
fi
实例一 Y/N:
#!/bin/bash
#Program:
# This program shows "Hello World!" in your screen.
#History:
# // lzyer First release
read -p "Please input (Y/N)? " yn
if [ "${yn}" == "Y" ] || [ "${yn}" == "y" ];
then
echo "OK,continue."
exit
fi
if [ "${yn}" == "N"] || [ "${yn}" == "n" ];
then
echo "oh,interrupt!"
exit
fi
echo "I don't know what your choice is " && exit
实例二:
- 判断 $1 是否为 hello,如果是的话,就显示 "Hello, how are you ?";
- 如果没有加任何参数,就提示使用者必须要使用的参数下达法;
- 而如果加入的参数不是 hello ,就提醒使用者仅能使用 hello 为参数。
#!/bin/bash
#Program:
# check $ is equal to "hello"
#History:
#// lzyer First Release
if [ "${1}" == "hello" ];then
echo "Hi, how are you?"
elif [ "${1}" == "" ]; then
echo "you must input parameter"
else
echo "hello~~~"
fi
实例三 使用netstat 的指令查看服务的状态
#!/bin/bash
#Program:
# using netstat and grep to detect www.ssh,ftp and mail service.
#History:
#// lzyer First release
echo "Now, I will detect your Linux server' service!"
echo -e "The www,ftp,ssh and mail will be detect!"
testfile=/home/lzyer/test/bin/netstat_file.txt
netstat -tuln > ${testfile}
testing=$(grep ":80" ${testfile})
if [ "${testing}" != "" ];then
echo "www is running in your system."
fi
testing=$(grep ":22" ${testfile})
if [ "${testing}" != "" ];then
echo "ssh is running in your system."
fi
testing=$(grep ":21" ${testfile})
if [ "${testing}" != "" ];then
echo "ftp is running in your system."
fi
testing=$(grep ":25" ${testfile})
if [ "${testing}" != "" ];then
echo "mail is running in your system."
fi
实例四:计算退伍时间
#!/bin/bash
#Program:
# You input demobillization date, I calculate how many days before you demobilize.
#History:
#// lzyer First release
echo "this program will try to calculate:"
read -p "how many days before you demobillization date (YYYYMMDD>20170805): " date2
date_d=$(echo ${date2} | grep '[0-9]\{8\}')
if [ "${date_d}" == "" ];then
echo "You input the wrong date format..."
exit
fi
declare -i date_dem=$(date --date="${date2}" +%s)
declare -i date_now=$(date +%s)
declare -i date_total_s=$((${date_dem}-${date_now}))
declare -i date_d=$((${date_total_s}///))
if [ ${date_total_s} -lt ];then
echo "You had been demobilization before : " $((-*${date_d})) "day ago"
else
declare -i date_h=$((((${date_total_s}-${date_d}**))//))
echo "You will demobilization after ${date_d} days and ${date_h} hours."
fi
2.利用 case ..... esac 判断
实例一:
#!/bin/bash
#Program:
# show "hello" from $...by case esac
#History:
#// lzyer first release
case ${} in
"hello")
echo "hello,how are you?";;
"")
echo "please your input sth.";;
*)
echo "Usage ${0} hello";;
esac
3.利用 function 功能
#!/bin/bash
#Program:
# function use
#History:
#// lzyer first release
function print(){
echo "Your choice is ${1}"
}
echo "This program will print your selection !"
case ${} in
"one") print ;;
"two") print ;;
"three") print ;;
*) echo "Usage ${0} one|two|three";;
esac
linux 条件判断式的更多相关文章
- 第十三章、学习 Shell Scripts 条件判断式
利用 if .... then 单层.简单条件判断式 if [ 条件判断式 ]; then 当条件判断式成立时,可以进行的命令工作内容: fi <==将 if 反过来写,就成为 fi !结束 i ...
- 【重点】Shell入门教程:流程控制(3)条件判断式的真假值
之前曾提到,在Bash中什么是真什么是假,是以命令的结束状态是否为0来做判断.传回0,即为真:传回非0,即为假. 在Bash中,这种可以影响程序流程的式子,称为条件判断式.判断式的操作数分成“单元”及 ...
- 【shell】条件判断式
条件判断式的表示格式: 文件判断式: [root@andon ~]# [ -e /root/1 ] && echo yes || echo no #注意[]里面的空格,第一个命令为真打 ...
- shell编程 条件判断式----利用 case ..... esac 判断
条件判断式----利用 case ..... esac 判断 case $变量名称 in <==关键词为 case ,还有变量前有钱字号 "第一个变量内容") &l ...
- shell编程 条件判断式----利用 if .... then ----多重
条件判断式----利用 if .... then ----多重 在同一个数据的判断中,如果该数据需要进行多种不同的判断时,应该怎么作?举例来说,上面的 sh06.sh 脚本中,我们只要进行一次 $yn ...
- Linux 条件判断
1. 按照文件类型判断 -b 文件 #判断文件是否存在,并且是设备文件 -c 文件 #判断文件是否存在,并且是字符设备文件 -d 目录 #判断目录是否存在,并且是否为目录(是目录返回真) -e 文件 ...
- Shell学习笔记 - 条件判断式
1. 判断格式 1) test 参数 文件 例: test -e /root/install.log 2) [ 参数 文件 ] -- 推荐使用 例: [ -e /root/install.log ] ...
- linux条件判断:eq、ne、gt、lt、ge、le
-eq(equal) :判断是否相等,相等为真 -ne(inequality):判断是否不等,不等为真 -gt(greter than):判断是否大于,大于为真 -lt(less than):判断是否 ...
- Linux学习之第十九、条件判断
原文地址:http://vbird.dic.ksu.edu.tw/linux_basic/0340bashshell-scripts_4.php 条件判断式 只要讲到『程序』的话,那么条件判断式,亦即 ...
随机推荐
- 51定时器控制4各led,使用回调函数机制
程序转载自51hei,经过自己的实际验证,多了一种编程的思路技能,回调函数的基本思想也是基于事件机制的,哪个事件来了, 就执行哪个事件. 程序中,最多四个子定时器,说明51的处理速度是不够的,在中断中 ...
- 39-Role以及Claims授权
asp.net core多鼓励使用claims授权 1-使用role授权 在类或方法上贴上Roles,这样就知道有user的角色才可以访问 [Authorize(Roles="user&qu ...
- LeetCode:12. Integer to Roman(Medium)
1. 原题链接 https://leetcode.com/problems/integer-to-roman/description/ 2. 题目要求 (1) 将整数转换成罗马数字: (2) 整数的范 ...
- VHDL入门学习-程序组成
1. VHDL程序的组成 一个完整的VHDL程序是以下五部分组成的: 2. 库(LIBRARY):比较好理解,调用系统已有的库,WORK库就是用户当前编辑文件所在的文件夹, IEEE库:由IEEE(美 ...
- leetcode笔记--6 Add Digits
question: Given a non-negative integer num, repeatedly add all its digits until the result has only ...
- list 集合addAll 和 add 方法小坑
1.问题 我们经常会遍历 list集合,在遍历的过程中,如果在遍历的过程中添加了 add() 或者 addAll() 方法修改了遍历的list列表,那么会报错. 代码演示: List<Inte ...
- 自动化测试-selenium启动浏览器
在自动化测试过程中,通过selenium启动浏览器时,可能需要加载插件(如测试用的firebug.或产品中要求必须添加某插件等).读取用户数据(自己浏览器的配置文件/别人直接给的浏览器配置文件).设置 ...
- jquery用正则表达式验证密码强度
/** * 不加paste鼠标粘贴不起作用 * 不加input第一次粘贴的时候不变 * 加上input和focus可以兼容表情 * ke ...
- 查看ClassLoader载入了哪些类?
在执行jar时加上-verbose:class java -verbose:class -Xms1G -Xmx2G -jar xx.jar 必要时还可以使用 >log.txt 将输出输入到文本 ...
- spring环境搭建(简单实例)
1使用Maven导入需要的依赖(在project标签下) <properties> <spring_version>3.2.2.RELEASE</spring_versi ...