码迷,mamicode.com
首页 > 系统相关 > 详细

shell基础--test命令的使用

时间:2017-04-10 23:44:56      阅读:275      评论:0      收藏:0      [点我收藏+]

标签:判断字符串   基础   http   bsp   ima   正则表达式   shell   文件   font   

test :用于文件类型检查和变量比较

一.用途:

1.判断表达式

技术分享 

2.判断字符串

技术分享

3.判断整数

技术分享

4.判断文件

技术分享

测试例子:

(1).test

[root@~_~ day5]# cat test.sh

#!/bin/bash

a=$1

b=$2

if test $a -eq $b

then

   echo "a=b"

else

   echo "a!=b"

fi

[root@~_~ day5]# sh test.sh 1 1

a=b

[root@~_~ day5]# sh test.sh 1 2

a!=b 

---------------------------------------------

(2).[]

[root@~_~ day5]# cat test.sh

#!/bin/bash

a=$1

b=$2

[ $a = $b ] && echo "a=b" || echo "a!=b"

[root@~_~ day5]# sh test.sh 1 2

a!=b

[root@~_~ day5]# sh test.sh 1 1

a=b

-------------------------------------------------

(3).判断文件

[root@~_~ day5]# cat test2.sh

#!/bin/bash

[ -f "$0" ]&& echo "$0 is a file" || echo "$0 is not a file"

[root@~_~ day5]# sh test2.sh

test2.sh is a file

 

二.test,[] , [[]]用法比较

[]与test等价,均为shell得到内部命令,而[[]]是shell得到关键字,bash把双中括号中的表达式看作一个单独的元素,并返回一个退出状态码,故推荐用 [[]] 作为条件判断语句,不易出现逻辑错误。另外,[[]]还支持模式匹配和正则表达式

 (1).语法比较

[[]]:  if [[ $a != 1 && $a != 2 ]]

[]:    if [ $a -ne 1] && [ $a != 2 ] 或者 if [ $a -ne 1 -a $a != 2 ]

 (2). [[]] 支持模式匹配

[root@~_~ day5]# cat test4.sh

#!/bin/bash

[[ "abcd" == a*d ]]&& echo True || echo Flase

[ "abcd" == a*d ]&& echo True || echo Flase

[root@~_~ day5]# sh test4.sh

True

Flase

(3).[[]] 支持正则表达式

[root@~_~ day5]# cat test5.sh

[[ "hello" =~ ^h ]]&& echo Ture || echo False

[root@~_~ day5]# sh test5.sh

Ture

shell基础--test命令的使用

标签:判断字符串   基础   http   bsp   ima   正则表达式   shell   文件   font   

原文地址:http://www.cnblogs.com/ajilisiwei/p/6691224.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!