There are a few ways to do this. As a one shot, the following works nicely:
du -sh *
If you’re piping commands on the command line, though, absolute paths to each file can be more useful:
find `pwd` | xargs du -sh
There are a few ways to do this. As a one shot, the following works nicely:
du -sh *
If you’re piping commands on the command line, though, absolute paths to each file can be more useful:
find `pwd` | xargs du -sh