linux命令之ll按时间和大小排序显示

ll不是命令,是ls -l的别名

按大小排序

[root@localhost ~]# ll -Sh 

按时间排序

[root@localhost ~]# ll -rt

ll -t 是降序, ll -t | tac 是升序
原文地址:https://www.cnblogs.com/pipiyan/p/10600058.html