如何用perl⼀shell得到最新创建的文件⼀文件夹名?

2024年11月20日 01:28
有3个网友回答
网友(1):

可以用-A比较一下最后一次被访问的时间,取最新的(没测试过)
或者调用一下shell命令 ll -rt 最后一条就是了
应该有其他更有效率的办法,上面的方法貌似很丑。。

网友(2):

in terminal , type: ll -tr or ls -tr
(-t sort by modification time,newest first
-r reverse order while sorting)
list the file and directory by time, the last means the lastest.

网友(3):

什么意思是最新创建的文件/文件夹?