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.
如何在 bash 中列出最近修改的最大 N 个(例如 5 个)文件?
我用了
ls -alt
或者
find -mtime 0
显示最近的文件,但我不知道如何将结果限制为 5 条记录。也许可以在命令管道中遵循 find 或其他一些命令?
您可以使用head或tail限制 pipie 中的行数:
head
tail
ls -latr | tail -n5