This entry is part 7 of 19 in the Bash-whacking series

Ever wanted to list a directory sorted by decreasing file size? Useful for finding large files..

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

Courtesy of LinuxQuestions.org