$ find . -type d -print0 | xargs -0 du -s | sort -n | tail -10 | cut -f2 | xargs -I{} du -sh {} | sort -rn
Tag: onleliners
-
Find the population of the world
$ curl –silent http://www.census.gov/population/international/ | grep wclocknum | sed -r ‘s#^.*>([0-9,]+)<.*$#\1#'