linux - get size of many files at once -


i've found can print list directories total size

du -sb mydirectory 

is there anyway can apply same command array of directories du -sb (mydirectory yourdirectory hisdirectory)?

just list dirs

du -sb mydirectory yourdirectory hisdirectory 

note how man page says:

du [option]... [file]... 

that's [file]... means.

if want examine directories in current directory

du -sb */ 

Comments

Popular posts from this blog

python - Subclassed QStyledItemDelegate ignores Stylesheet -

java - HttpClient 3.1 Connection pooling vs HttpClient 4.3.2 -

SQL: Divide the sum of values in one table with the count of rows in another -