获取Linux上一个目录中的最新文件

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

没有看到ls的限制参数…

402856 次浏览
ls -Art | tail -n 1

这将返回最新修改的文件或目录。不是很优雅,但是很好用。

使用国旗:

-A列出了除...之外的所有文件

-r在排序时倒序

-t按时间排序,最新的在前

ls -t | head -n1

这个命令实际上给出了当前工作目录中最新修改的文件或目录。

ls -lAtr | tail -1

其他解决方案不包括以'.'开头的文件。

这个命令还包括'.''..',这可能是你想要的,也可能不是:

ls -latr | tail -1

我使用:

ls -ABrt1 --group-directories-first | tail -n1

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

我喜欢echo *(om[1]) (zsh语法),因为它只给出文件名,不调用任何其他命令。

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

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

命令行简单的外行解释:

  • find /dir/path -type f查找目录中的所有文件
    • -printf "%T@ %p\n"为每个文件打印一行,其中%T@是1970年代以来的浮点秒数,%p是文件名路径,\n是新的行字符
    • 更多信息见man find
  • |是一个shell pipe(参见Pipelinesman bash部分)
  • sort -n表示对第一列进行排序,并将令牌视为数字而不是字典(参见man sort)
  • cut -d' ' -f 2-表示使用 字符分割每行,然后从第二个令牌开始打印所有令牌(参见man cut)
    • 注意:-f 2只会打印第二个令牌
  • tail -n 1表示打印最后一行(参见man tail)

试试这个简单的命令

ls -ltq  <path>  | head -n 1

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

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

我个人更喜欢使用尽可能少的非内置bash命令(以减少昂贵的fork和exec系统调用的数量)。要按日期排序,需要调用ls。但是使用head并不是真正必要的。我使用以下一行代码(只适用于支持名称管道的系统):

read newest < <(ls -t *.log)

或者获取最古老的文件的名称

read oldest < <(ls -rt *.log)

(注意两个“<”符号之间的距离!)

如果还需要隐藏文件,可以添加一个参数。

我希望这能有所帮助。

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

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

ls -Aru | tail -n 1

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

ls -Art | tail -n 1

所有这些ls/tail解决方案都适用于一个目录下的文件-忽略子目录。

为了在搜索中包含所有文件(递归地),可以使用find。Gioele建议对格式化的查找输出进行排序。但是要小心使用空格(他的建议不适用于空格)。

这应该适用于所有文件名:

find $DIR -type f -printf "%T@ %p\n" | sort -n | sed -r 's/^[0-9.]+\s+//' | tail -n 1 | xargs -I{} ls -l "{}"

这一分类由时,见人发现:

%Ak    File's  last  access  time in the format specified by k, which is either `@' or a directive for the C `strftime' function.  The possible values for k are listed below; some of them might not be available on all systems, due to differences in `strftime' between systems.
@      seconds since Jan. 1, 1970, 00:00 GMT, with fractional part.
%Ck    File's last status change time in the format specified by k, which is the same as for %A.
%Tk    File's last modification time in the format specified by k, which is the same as for %A.

因此,只需将%T替换为%C,以按ctime排序。

ls -t -1 | sed '1q'

将显示文件夹中最后修改的项目。与grep配对以查找带有关键字的最新条目

ls -t -1 | grep foo | sed '1q'

查找/排序解决方案工作得很好,直到文件数量变得非常大(比如整个文件系统)。使用awk来跟踪最近的文件:

find $DIR -type f -printf "%T@ %p\n" |
awk '
BEGIN { recent = 0; file = "" }
{
if ($1 > recent)
{
recent = $1;
file = $0;
}
}
END { print file; }' |
sed 's/^[0-9]*\.[0-9]* //'

根据模式在每个目录中查找最新的文件,例如工作目录的子目录的名称以“tmp”结尾(不区分大小写):

find . -iname \*tmp -type d -exec sh -c "ls -lArt {} | tail -n 1" \;

关于可靠性注意事项:

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

对于GNU ls,另一个选项是使用--quoting-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 + X成为一个扩展到最新文件的补全器。

所以:

vi Ctrl+Xm

Would make you edit the newest file (you also get a chance to see which it before you press Return).

vi Alt+2Ctrl+Xm

对于第二个最新的文件。

vi *.cCtrl+Xm

for the newest c file.

vi *(.)Ctrl+Xm

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

基于dmckee回答的简短变体:

ls -t | head -1

递归地:

find $1 -type f -exec stat --format '%Y :%y %n' "{}" \; | sort -nr | cut -d: -f2- | head

假设你不关心以.开头的隐藏文件

ls -rt | tail -n 1

否则

ls -Art | tail -n 1

使用R递归选项..你可以认为这是对好的答案的增强

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

如果你想获得最近修改的文件,也包括任何子目录,你可以用这个小的联机程序:

find . -type f -exec stat -c '%Y %n' {} \; | sort -nr | awk -v var="1" 'NR==1,NR==var {print $0}' | while read t f; do d=$(date -d @$t "+%b %d %T %Y"); echo "$d -- $f"; done

如果你想对已更改的文件做同样的事情,但对于已访问的文件,你只需更改

Y %参数从统计命令到% X。对于最近访问的文件,你的命令是这样的:

find . -type f -exec stat -c '%X %n' {} \; | sort -nr | awk -v var="1" 'NR==1,NR==var {print $0}' | while read t f; do d=$(date -d @$t "+%b %d %T %Y"); echo "$d -- $f"; done

对于这两个命令,如果你想列出多个文件,你也可以更改var = " 1 "参数。

只有Bash内置,紧跟BashFAQ / 003:

shopt -s nullglob


for f in * .*; do
[[ -d $f ]] && continue
[[ $f -nt $latest ]] && latest=$f
done


printf '%s\n' "$latest"

找到前缀为shravan*的文件并查看

less $(ls -Art shravan* | tail -n 1)

如果你想在/apps/test目录中找到最后修改的文件夹名称,那么你可以在批处理脚本中放入下面的代码片段并执行它,它将打印最后修改的文件夹名称。

#!/bin/bash -e


export latestModifiedFolderName=$(ls -td /apps/test/*/ | head -n1)


echo Latest modified folder within /apps/test directory is $latestModifiedFolderName