Linux shell script find 作为 if 判断条件
程序员文章站
2022-05-13 11:21:57
...
学习笔记:
目的:查找当前文件夹下7小时以内的文件,如果有文件打印”successful”,否则打印“fail”
cur_time=$(date "+%Y-%m-%d-%H")
#cur_time='12-06'
echo $cur_time
if
# ls -lrt --time-style '+%Y-%m-%d-%H' | grep $cur_time
ls -lrt --time-style='+%Y-%m-%d-%H' | grep $cur_time >/dev/null
then
echo "exist file $?"
else
echo "no exist file $?"
fi
if
find . -cmin -420 -name 'dail*' -exec ls -lrt {} \; | grep -v '^d' >/dev/null
then
echo "successful"
else
echo
"fail"
fi
上一篇: top 命令参数使用说明
下一篇: php 常用字符串函数总结_php技巧
推荐阅读
-
Linux shell脚本编程if语句的使用方法(条件判断)
-
Linux_shell条件判断if中的-a到-z的意思
-
Linux shell脚本编程if语句的使用方法(条件判断)
-
linux shell脚本中 if 条件判断
-
Linux shell条件判断if中的-a到-z的意思【推荐】
-
Linux编程 23 shell编程(结构化条件判断 命令if -then , if-then ... elif-then ...else,if test)
-
linux shell 条件判断语句整理
-
Linux shell script find 作为 if 判断条件
-
Linux_shell条件判断if中的-a到-z的意思
-
Linux shell条件判断if中的-a到-z的意思【推荐】