我尝试了命令“ls -l”和“ls-lt”在同一个目录中,但它显示的输出相同。它们有什么区别吗?
答案1
从man ls
:
DESCRIPTION
List information about the FILEs (the current directory by default). Sort entries
alphabetically if none of -cftuvSUX nor --sort is specified.
.
.
.
-t sort by modification time, newest first
因此,区别在于, 是按字母顺序排序的ls -l
, 是按修改时间排序的ls -lt