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

Linux Shell : Test命令参数解析

时间:2015-05-04 11:31:26      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:

转自http://blog.chinaunix.net/uid-21961753-id-1810588.html

 

格式: test conditions
test -n string : string 不为空 
test -z string : string 为空

test int1 -eq int2  : int1 == int 2
test int1 -ne int2  : int1 != int2 
test int1 -gt int2   : int1 > int2 
test int1 -ge int2  : int1 >= int2 
test int1 -lt int2    : int1 < int2 
test int1 -le int2   : int1 <= int2
test -r filename   : 用户对文件filename有读权限
test -w filename  : 用户对文件filename有写权限
test -x filename   : 用户对文件filename有可执行权限
test -f filename   : 文件filename为普通文件
test -d filename  : 文件filename为目录
test -c filename  : 文件filename为字符设备文件
test -b filename  :文件filename为块设备文件
test -s filename  : 文件filename大小不为零
test -t fnumb      : 与文件描述符fnumb(默认值为1)相关的设备是一个终端设备
test ! -s empty   : empty 为空
test -a       : And 
test -o       : Or
注意test命令和[ ]中括号作用是一样的。。

Linux Shell : Test命令参数解析

标签:

原文地址:http://www.cnblogs.com/storymedia/p/4475521.html

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