歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux基礎 >> 關於Linux

ls按時間排序輸出文件列表

ls按時間排序輸出文件列表   首先,ls --help查看ls相關的與時間排序相關的參數:   > ls --help|grep -E "time|sort" 如果不指定 -cftuSUX 或 --sort 任何一個選項,則根據字母大小排序。   -c                         配合 -lt:根據 ctime 排序及顯示 ctime (文件                                配合 -l:顯示 ctime 但根據名稱排序                                否則:根據 ctime 排序   -f                         do not sort, enable -aU, disable -lst       --full-time            like -l --time-style=full-iso   -r, --reverse              reverse order while sorting   -S                         sort by file size       --sort=WORD            extension -X, none -U, size -S, time -t,                              version -v, status -c, time -t, atime -u,       --time=WORD            with -l, show time as WORD instead of modification                              time: atime, access, use, ctime or status; use                              specified time as sort key if --sort=time       --time-style=STYLE     with -l, show times using style STYLE:   -t                         sort by modification time 可以看到-c按創建時間ctime排序,-t按修改時間mtime排序,默認都是將最近的文件排在前面,-r可以實現逆序排序,即將最近的文件排在後面,--sort=WORD可訂制排序鍵值。   常用組合如下:   > ls -alt # 按修改時間排序 > ls --sort=time -la # 等價於> ls -alt > ls -alc # 按創建時間排序 > ls -alu # 按訪問時間排序   # 以上均可使用-r實現逆序排序 > ls -alrt # 按修改時間排序 > ls --sort=time -lra # 等價於> ls -alrt > ls -alrc # 按創建時間排序 > ls -alru # 按訪問時間排序   # 也可以查找指定類型的文件,然後指定按時間排序 > find . -name *.php|xargs ls -alt  
Copyright © Linux教程網 All Rights Reserved