您的位置:首页 > 运维架构 > Shell

Linux Shell : Test命令参数解析

2008-11-25 13:18 447 查看
http://209.85.173.132/search?q=cache:56H3TqbWaWwJ:blog.csdn.net/wwalpha/archive/2006/10/23/1347584.aspx+linux+shell+test&hl=zh-CN&ct=clnk&cd=3

格式: test[/b] conditions

test[/b] -n string : string 不为空
test[/b] -z string : string 为空

test[/b] int1 -eq int2 : int1 == int 2
test[/b] int1 -ne int2 : int1 != int2
test[/b] int1 -gt int2 : int1 > int2
test[/b] int1 -ge int2 : int1 >= int2
test[/b] int1 -lt int2 : int1 < int2
test[/b] int1 -le int2 : int1 <= int2

test[/b] -r filename : 用户对文件filename有读权限
test[/b] -w filename : 用户对文件filename有写权限
test[/b] -x filename : 用户对文件filename有可执行权限
test[/b] -f filename : 文件filename为普通文件
test[/b] -d filename : 文件filename为目录
test[/b] -c filename : 文件filename为字符设备文件
test[/b] -b filename :文件filename为块设备文件
test[/b] -s filename : 文件filename大小不为零
test[/b] -t fnumb : 与文件描述符fnumb(默认值为1)相关的设备是一个终端设备

test[/b] ! -s empty : empty 为空

test[/b] -a : And
test[/b] -o : Or
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: