关于linux,shell脚本中怎样判断文件是否有内容? (linux c 检测目录是否存在)

判断文冲郑纤丛首件大小是不是0kb行不行?使用-s

if ; then

文件内容不为空散仿

else

文件内容为空

fi

可以用“test 条件表达式”进行测试,如:test -f /etc/fstab 测试文件/etc/fstab文件是否存在

-e File 如果文件File存在(Exist),则为True

-s File 如果文件File存在且文件大小(Size)大于零,则为True

-f File 如果文件File存在且是普通文件(File),迹清烂则为True

-d File 如果文件File存在且是目录(Directory),则为True

-b File 如果文件File存在姿漏且是块(Block)特殊文件,则为True

-c File 如果文件File存在且是字符(Character)特殊文件,则为True

-L File 如果文件File存在且是符号链接(Link)文件,则为True

-r File 如果文件File存在且是可读的(Readable),则为True

-w File 如果文件File存在且是可写的(Writable),则为True

-x File 如果文件File存在且是可执行的(Executable),则为True

-O File 如果文件File存在且属于当前用户(Owner),则为True

-G File 如果文件File存在且属于当前用户组(Group),则为True

File1 -nt File2 如果文件正亩File1新于(Newer Then) File2,则为True

File2 -ot File2 如果文件File1旧于(Older Then) File2,则为True


数据运维技术 » 关于linux,shell脚本中怎样判断文件是否有内容? (linux c 检测目录是否存在)