linux shell之通过标识测试文件系统属性的方法示例
(编辑:jimmy 日期: 2024/11/3 浏览:3 次 )
1 通过标识测试文件系统属性
[ -f $file_var ]
:如果给定的变量包含正常的文件路径或文件名,则返回真。[ -x $var ]
:如果给定的变量包含的文件可执行,则返回真。[ -d $var ]
:如果给定的变量包含的是目录,则返回真。[ -e $var ]
:如果给定的变量包含的文件存在,则返回真。[ -c $var ]
:如果给定的变量包含的是一个字符设备文件的路径,则返回真。[ -b $var ]
:如果给定的变量包含的是一个块设备文件的路径,则返回真。[ -w $var ]
:如果给定的变量包含的文件可写,则返回真。[ -r $var ]
:如果给定的变量包含的文件可读,则返回真。[ -L $var ]
:如果给定的变量包含的是一个符号链接,则返回真。
2 代码测试
#/bin/bash fpath="/home/chenyu/Desktop/linux/dabian/shell/1.txt" #fdir="/home/chenyu/Desktop/linux/dabian/shell/back" fdir="./back" fexe="./file.sh" #判断是否为文件 if [ -e $path ]; then echo "file "${fpath}" exist"; else echo "file "${fpath}" dose not exist" fi #判断是否为目录 if [ -d $fdir ]; then echo "dictionary "${fdir}" exist"; else echo "dictionary "${fdir}" dose not exist" fi #判断是否为可执行文件 if [ -x $fexe ]; then echo ${fexe}" can exec" else echo ${fexe}" can not exec" fi
3 运行结果
file /home/chenyu/Desktop/linux/dabian/shell/1.txt exist
dictionary ./back exist
./file.sh can exec
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对的支持。如果你想了解更多相关内容请查看下面相关链接
下一篇:linux shell常用循环与判断语句(for,while,until,if)使用方法