{ "name": "du", "section": 1, "title": "estimate file space usage", "synopsis": ["du [OPTION]... [OPERAND]..."], "description": "Prints disk usage totals per path: POSIX-ish block counts by default, or human-readable byte totals with -h.", "options": [ { "flag": "-k", "meaning": "1024-byte blocks" }, { "flag": "-h, --human-readable", "meaning": "IEC-style sizes (K, M, …) from byte totals" }, { "flag": "-s, --summarize", "meaning": "One line per operand (default behavior here)" } ], "keywords": ["du", "bare-os", "coreutils"], "examples": [ { "caption": "sizes under cwd", "code": "du ." }, { "caption": "human-readable", "code": "du -h ~" } ], "listCategory": "coreutils" }