List 10 largest files/directories within the current directory
du -sk * | sort -nr | tail -10
1805 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world (or not, you can keep them private!)
du -sk * | sort -nr | tail -10
du -sk * | sort -n | tail -10