本文主要是介绍测试linux系统某些文件属性之test命令,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
要检测系统上某些文件或相关属性时,我们可以使用test命令,比如:检查/root/ztj.txt文件是否存在,可以使用test -e /root/ztj.txt命令,不过执行结果不会显示任何信息,需配合$?或&&及||来展现具体结果
E.g:
[root@kibana ~]# test -e /root/ztj.txt && echo "ztj.txt exist" || echo "ztj.txt not exist"
ztj.txt exist
[root@kibana ~]#
其中,-e是测试一个“东西”是否存在,其它测试标志如下:
1.文件名“类型”检测(存在与否)
测试标志 | 说明 |
-e | “文件名”是否存在 |
-f | “文件名”是否为文件 |
-d | “文件名”是否为目录 |
-b | “文件名”是否为一个块设备 |
-c | “文件名”是否为一个字符设备 |
-p | “文件名”是否为一个FIFO(管道)文件 |
-S | “文件名”是否为一个套接字文件 |
-L | “文件名”是否为一个链接文件 |
2.文件权限检测
测试标志 | 说明 |
-r | 检测该文件名是否具有“可读”属性 |
-w | 检测该文件名是否具有“可写”属性 |
-x | 检测该文件名是否具有“可执行”属性 |
-u | 检测该文件名是否具有“SUID”属性 |
-g | 检测该文件名是否具有“SGID”属性 |
-k | 检测该文件名是否具有“Sticky bit”属性 |
-s | 检测该文件名是否为“非空白文件” |
3.文件比较
测试标志 | 说明 |
-nt | (newer than)判断file1是否比file2新 |
-ot | (older than)判断file1是否比file2旧 |
-ef | 判断file1与file2是否为同一文件,可用于判断硬链接,主要判断两个文件是否均指向同一个iNode |
4.整数判断
测试标志 | 说明 |
-eq | 两数值相等(equal) |
-ne | 两数值不等(not equal) |
-gt | n1大于n2(greater than) |
-lt | n1小于n2(less than) |
-ge | n1大于等于n2(greater than or equal) |
-le | n1小于等于n2(less than or equal) |
5.字符串判断
测试标志 | 说明 |
test -z string | 判断字符串是否为0,若string为空字符串,则为TRUE |
test -n string | 判断字符串是否非为0,若string为空字符串,则为FALSE 其中:-n可省略 |
test str1 = str2 | 判断str1是否等于str2,若相等,则返回true |
test str1 != str2 | 判断str1是否不等于str2,若不相等,则返回true |
6.多重条件判断
测试标志 | 说明 |
-a | (and)两个条件同时成立。E.g:test -r file -a -x file,表示file同时具有r与x权限时,则回传true |
-o | (or)两个条件任何一个成立。E.g:test -r file -o -x file,表示file具有r或x权限时,则回传true |
! | 条件求反,E.g:test ! -x file,当file不具有x时,则回传true |
test样例:
[root@kibana ~]# cat test.sh
#!/bin/bash#让用户输入文件名,并且判断用户是否真的输入了字符串
echo -e "The program will show you if the filename exists which input by you.\n\n"
read -p "Input a filename : " filename
test -z $filename && echo "You need to input a filename." && exit 0
#判断文件是否存在
test ! -e $filename && echo "The filename $filename does not exist" && exit 0
#判断文件类型与属性
test -f $filename && filetype="regular file"
test -d $filename && filetype="directory"
test -r $filename && perm="readable"
test -w $filename && perm="$perm writeable"
test -x $filename && perm="$perm executable"
#信息输出
echo -n "The filename $filename is a $filetype"
echo ",And the permission are $perm"
[root@kibana ~]#
[root@kibana ~]# sh test.sh
The program will show you if the filename exists which input by you.Input a filename : ztj.txt
The filename ztj.txt is a regular file,And the permission are readable writeable
[root@kibana ~]#
这篇关于测试linux系统某些文件属性之test命令的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!