#!/usr/bin/env rc

targs = $*

switch($#*){
case 0;
	targs = .
case *;
}

du -cks $targs | sort -rn | head -11

