寻找返回目录中最新文件的命令。

没有看到ls的limit参数…


当前回答

这是一个递归版本(即,它在某个目录或其任何子目录中查找最近更新的文件)

find /dir/path -type f -printf "%T@ %p\n" | sort -n | cut -d' ' -f 2- | tail -n 1

命令行简单的外行解释:

find /dir/path -type f finds all the files in the directory -printf "%T@ %p\n" prints a line for each file where %T@ is the float seconds since 1970 epoch and %p is the filename path and \n is the new line character for more info see man find | is a shell pipe (see man bash section on Pipelines) sort -n means to sort on the first column and to treat the token as numerical instead of lexicographic (see man sort) cut -d' ' -f 2- means to split each line using the character and then to print all tokens starting at the second token (see man cut) NOTE: -f 2 would print only the second token tail -n 1 means to print the last line (see man tail)

其他回答

我使用:

ls -ABrt1——group- directory -first | tail -n1 . ls -ABrt1——group- directory -first | tail -n1 . ls

它只给我文件名,不包括文件夹。

关于可靠性注意事项:

由于换行符和文件名中的任何字符一样有效,任何依赖于行(如基于头/尾的行)的解决方案都是有缺陷的。

在GNU ls中,另一个选项是使用——quote -style=shell-always选项和一个bash数组:

eval "files=($(ls -t --quoting-style=shell-always))"
((${#files[@]} > 0)) && printf '%s\n' "${files[0]}"

(如果您还想考虑隐藏文件,则在ls中添加-A选项)。

如果您希望限制到常规文件(忽略目录、fifo、设备、符号链接、套接字……),则需要求助于GNU find。

使用bash 4.4或更新版本(用于readarray -d)和GNU coreutils 8.25或更新版本(用于cut -z):

readarray -t -d '' files < <(
  LC_ALL=C find . -maxdepth 1 -type f ! -name '.*' -printf '%T@/%f\0' |
  sort -rzn | cut -zd/ -f2)

((${#files[@]} > 0)) && printf '%s\n' "${files[0]}"

或递归地:

readarray -t -d '' files < <(
  LC_ALL=C find . -name . -o -name '.*' -prune -o -type f -printf '%T@%p\0' |
  sort -rzn | cut -zd/ -f2-)

这里最好使用zsh和它的glob限定符,而不是bash来避免所有这些麻烦:

当前目录下最新的常规文件:

printf '%s\n' *(.om[1])

包括隐藏的:

printf '%s\n' *(D.om[1])

第二个最新的:

printf '%s\n' *(.om[2])

符号链接解析后检查文件年龄:

printf '%s\n' *(-.om[1])

递归地:

printf '%s\n' **/*(.om[1])

此外,启用了补全系统(compinit和co)后,Ctrl+Xm就变成了扩展到最新文件的补全器。

So:

vi Ctrl+Xm

会让你编辑最新的文件(你也有机会看到它在你按下返回)。

vi Alt+2Ctrl+Xm

对于第二个最新的文件。

vi *.cCtrl+Xm

对于最新的c文件。

vi *(.)Ctrl+Xm

对于最新的常规文件(不是目录,也不是fifo/device…),等等。

ls -Frt | grep "[^/]$" | tail -n 1

我也需要这样做,我找到了这些命令。这些对我来说很有用:

如果你想要最后一个文件的创建日期在文件夹(访问时间):

ls -Aru | tail -n 1  

如果你想要最后一个文件的内容有变化(修改时间):

ls -Art | tail -n 1  

试试这个简单的命令

ls -ltq  <path>  | head -n 1

如果需要文件名-最后修改,path = /ab/cd/*.log

如果要修改目录名称-最后一次修改,则path = /ab/cd/*/