求一个Linux脚本,判断文件是否存在即

发布网友 发布时间:2022-04-23 00:29

我来回答

3个回答

热心网友 时间:2022-05-04 22:06

#!/bin/bash
Filename=/usr/123.txt
File_time=`stat -c %Y $Filename`;
Sys_time=`date +%s`;

if [ ! -f /usr/123.txt ]; then
echo "0"
else
exit 0

if [ $[ $Sys_time - $File_time ] -gt 300 ];then
echo "1";
else
echo "0";
fi

fi

热心网友 时间:2022-05-04 23:24

file=`ls /usr/123.txt`
if [ -z $file ] ;then
if [ -z `find /usr -mmin -5 -type f -name 123.txt` ] ;then
printf "1"
else
printf "0"
fi
else
printf "0"
fi

热心网友 时间:2022-05-05 00:59

实例:
#!/bin/sh
file=`find . -type f -mtime -5 -name "a.txt"`
if [ -e ${file} ];then
echo 0
else
echo 1
fi

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com