Answers:
ls -Art | tail -n 1
不是很优雅,但可以。
ls
传递给tail
,然后仅打印LAST行。恕我直言,最好按升序排序并head
按照chaos
建议使用。打印后,第一行打印头退出,因此发送下一行(实际上是下一个块)将引发SIGPIPE并ls
也退出。
ls -t | head -n1
该命令实际上在当前工作目录中提供最新的修改文件。
ls -tl | head -n 1
,而不必像我的那样将整个表推入管道。
ls -t *.png | head -n1
ls -Art | head -n1
如果您特别想要最新修改的文件
这是一个递归版本(即,它在某个目录或其任何子目录中找到最新更新的文件)
find $DIR -type f -printf "%T@ %p\n" | sort -n | cut -d' ' -f 2- | tail -n 1
编辑:使用-f 2-
而不是-f 2
凯文建议
find $DIR -type f -exec stat -lt "%Y-%m-%d" {} \+ | cut -d' ' -f6- | sort -n | tail -1
sort -nr
,则可以使用head -n 1
代替tail -n 1
并稍微提高效率。(尽管如果您对递归查找进行排序,则获取第一行或最后一行不会是很慢的部分。)
find ./ -type f -printf "%T@ %p\n" -ls | sort -n | cut -d' ' -f 2- | tail -n 1 | xargs -r ls -lah
find $DIR -type f -exec stat -lt "%F %T" {} \+ | cut -d' ' -f6- | sort -n | tail -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]}"
(将-A
选项添加到ls
如果您还想考虑隐藏文件,请)。
如果您想限制常规文件(忽略目录,fifos,设备,符号链接,套接字...),则需要使用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
及其限定符而不是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
启用完成系统(和共同)后,Ctrl+Xm会成为一个扩展程序,扩展为最新文件。
所以:
六 Ctrl+Xm
使您可以编辑最新文件(在按之前,您还可以查看该文件 Return)。
六 Alt+2Ctrl+Xm
对于第二最新的文件。
vi * .cCtrl+Xm
最新的 c
文件。
vi *(。)Ctrl+Xm
以获取最新的常规文件(不是目录,也不是fifo / device ...),依此类推。
zsh
提示。您能否在zsh docs中提供有关此详细信息的链接?
info zsh qualifiers
ls -lAtr | tail -1
其他解决方案不包括以以下内容开头的文件 '.'
。
此命令还将包括'.'
和'..'
,可能不是您想要的:
ls -latr | tail -1
我喜欢 echo *(om[1])
(zsh
语法),因为它仅提供文件名,而不调用任何其他命令。
我个人更喜欢使用尽可能少的非内置bash
命令(以减少昂贵的fork和exec syscalls的数量)。按日期排序ls
需要调用的内容。但是使用of head
并不是真正必要的。我使用以下一线(仅在支持名称管道的系统上工作):
read newest < <(ls -t *.log)
或获取最早的文件的名称
read oldest < <(ls -rt *.log)
(请注意两个“ <”标记之间的空格!)
如果还需要隐藏文件,则可以添加-arg。
我希望这会有所帮助。
ls -t -1 | sed '1q'
将显示文件夹中最后修改的项目。与配对grep
以查找带有关键字的最新条目
ls -t -1 | grep foo | sed '1q'
1
第一行等于head -n 1
q是多少?
试试这个简单的命令
ls -ltq <path> | head -n 1
如果要文件名-上次修改,则路径= /ab/cd/*.log
如果要使用目录名-上一次修改,则路径= / ab / cd / * /
所有这些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 "{}"
这按mtime排序,请参见man查找:
%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排序。
find $DIR -type f -printf "%T@ %p\n" | sort -n | cut -d' ' -f 2- | tail -n 1
或者,保留除第一个字段以外的所有内容: find $DIR -type f -printf "%T@ %p\n" | sort -n | cut -d' ' -f 1 --complement | tail -n 1
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
如果您不想对已更改的文件执行相同的操作,但是对于已访问的文件,则只需更改
stat命令中的%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”参数。
我也需要这样做,并且找到了这些命令。这些为我工作:
如果要在文件夹中创建文件的最后日期(访问时间):
ls -Aru | tail -n 1
而且,如果您希望最后一个文件的内容发生变化(修改时间):
ls -Art | tail -n 1
watch -n1 'ls -Art | tail -n 1'
-显示最后一个文件