Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何按修改时间(最近在顶部)对文件进行排序并且只有一列?
我试过了:
ls -1 | ls -lt
和
ls -lt | -1
但第一个有无关的列,第二个将它们列在一个列中,但顺序错误。
ls "filepath" -t -1
这将对上次修改的日期进行排序,并一次打印出 1 行。
我不认为你可以同时使用管道,除非你想让它列出两次。