Useful linux command

List out 10 biggest files in folder

find . -type f -exec du -h {} + | sort -rh | head -n 10

List biggest folders

du -h --max-depth=1 * | sort -hr