• Skip to main content

Uly.me

cloud engineer

  • Home
  • About
  • Archives

display

List Big Files

March 13, 2019

Find out which files or directories are using up disk resources.

# display the biggest files
find -type f -exec du -Sh {} + | sort -rh | head -n 5
# display the biggest directories
du -Sh | sort -rh | head -5

# display the biggest files find -type f -exec du -Sh {} + | sort -rh | head -n 5 # display the biggest directories du -Sh | sort -rh | head -5

Filed Under: Linux Tagged With: directories, display, files, find, large

Windows + Tab

January 9, 2019

Better late than never. How to display all open windows in Windows. Just press the Windows key + Tab.

Filed Under: Misc Tagged With: display, tab, windows

  • « Go to Previous Page
  • Go to page 1
  • Go to page 2
  • Home
  • About
  • Archives

Copyright © 2023