在目录中查找最新文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在目录中查找最新文件相关的知识,希望对你有一定的参考价值。
To find the latest file in a particular dir
way 1: $ ls -lrt | awk '{ f=$NF }; END{ print f }' The above awk is to print the last argument of the last line way 2: $ ls -t1 | head -n1
以上是关于在目录中查找最新文件的主要内容,如果未能解决你的问题,请参考以下文章
查找目录树中最新的 500 个文件的命令,并且符合 POSIX
在Tomcat的安装目录下conf目录下的server.xml文件中增加一个xml代码片段,该代码片段中每个属性的含义与用途