Files
bare-operating-system/packages/bare-os-coreutils/man/pages/du.json
T
2026-04-03 22:34:08 -04:00

25 lines
755 B
JSON

{
"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"
}