Contents

display total space usage

1
du -s

print sizes in human readable format

1
du -h

estimate the files’ space usage in the directory

1
ls | xargs du -h -s
Contents