CoodingBox
Posts with tag
cli
Find n largest files recursively
find -type f -exec du -Sh {} + | sort -rh | head -n 5 ` ...