ls -t選項標誌按時間/日期對文件/目錄列表進行排序。
$ ls -t [options] [file|dir]
默認列表:
$ ls
Desktop Downloads Pictures Templates Videos
Documents Music Public todo.txt
$
列表按時間/日期排序
$ ls -t
Pictures Desktop Downloads Public Videos
todo.txt Documents Music Templates
$
長列表格式按日期/時間排序:
$ ls -lt
total 4
drwxr-xr-x 2 user user 120 2011-08-17 18:14 Pictures
-rw-r--r-- 1 user user 131 2011-08-17 18:07 todo.txt
drwxr-xr-x 2 user user 80 2011-08-17 16:52 Desktop
drwxr-xr-x 2 user user 40 2011-08-17 16:52 Documents
drwxr-xr-x 2 user user 40 2011-08-17 16:52 Downloads
drwxr-xr-x 2 user user 40 2011-08-17 16:52 Music
drwxr-xr-x 2 user user 40 2011-08-17 16:52 Public
drwxr-xr-x 2 user user 40 2011-08-17 16:52 Templates
drwxr-xr-x 2 user user 40 2011-08-17 16:52 Videos
$