Scripting

獲取所有日誌文件的總大小

  • July 3, 2020

使用du -h:如何總結file1、file 2、file 3…位於各個目錄下的文件大小。

我相信它可以通過腳本來完成,但我不知道如何在終端的不同輸出中執行算術。

使用-c/--total選項獲取總大小。

要獲取包含“總”值的最後一行:

du -hc /path/to/file1 /path/to/file2 /path/to/filex | tail -n1

或者沒有“total”字元串的最後一行:

du -hc /path/to/file1 /path/to/file2 /path/to/filex | tail -n1 | cut -f1

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