#/bin/sh

find $* \( -type f -o -type l \) -maxdepth 1 -mindepth 1 -print0 | xargs -r0 du -b --max-depth 0 | sort -k1,1n | grep -v "^0"
