求一个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