How can I tell how much disk space I'm using

If you want to see how you're using space in your ECE unix account, use the following command:

du -csh --exclude .snapshot .[a-zA-Z]* *

The .snapshot folder is excluded as it's really a separate file system that does not count towards your quota (if you have one) and contains "backups" of your files.

  • No labels