Ls

看尾巴-20 ls -ltr?

  • October 13, 2020

我想查看目錄的最新內容。

我試過**watch tail -20 ls -ltr ./{directory}**它不工作。

有沒有辦法像 watch 命令一樣不斷顯示目錄的內容?

您需要先生成目錄列表 ( ls),然後對其進行限制 ( tail) 和watch整個內容:

watch "ls -ltr ./ | tail -20"

引用自:https://unix.stackexchange.com/questions/614311