Uly.me

cloud engineer

  • Home
  • About
  • Archives
Home/Archives for big

April 1, 2019

Find the Biggest File

Find the biggest files in the current directory. Sort by from large to small. Display only the top 20. Display in human readable format.

find -type f -exec du -Sh {} + | sort -rh | head -n 20

find -type f -exec du -Sh {} + | sort -rh | head -n 20

  • Cloud
  • Linux
  • Git

Copyright © 2012–2021