Bash: List/Find Files and order by size

Needed this for debugging a weird CMS problem. Either way, the files i needed had to be at least 1000bytes in size and the output had to be sorted by their size in ascending order.

# find ./ -type f -size +1000c -printf "%s %p \n" | sort -n