Finding the largest file in dir

The below command will list all the files and directories inside of /tmp sorted by their size

du -h /tmp --max-depth=1 | sort -hr | head -n 20