|
$ du -cshx ./a ./b
Feb. 15, 2012, 10:43 p.m.
—
openiduser14
Explanation
- -s, --summarize;
display only a total for each argument
- -c, --total;
produce a grand total
- -x, --one-file-system;
skip directories on different file systems
- -h, --human-readable;
print sizes in human readable format (e.g., 1K 234M 2G)
|