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

Linux Shell : Test命令参数解析

2006-10-23 23:38 603 查看
格式: 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 
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  shell linux string 终端