Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Sometimes is it's useful to know the size of directories inside your $HOME - especially when your quota limit is reached.

...

Code Block
> du -k * | sort -nr | cut -f2 | xargs -d '\n' du -sh

# or, another approach

> du -s -h * | sort -h -r

In case you prefer to "walk" around and take a look at the whole directory structure, it might be useful to use ncdu.

You can access ncdu  after itmenv  is loaded:

...