Skip to content

Instantly share code, notes, and snippets.

View thewhatsupguy's full-sized avatar

thewhatsupguy

  • Bangalore India
View GitHub Profile
@thewhatsupguy
thewhatsupguy / largefilesubuntulinux.sh
Created July 4, 2015 14:14
Find Large Files in Ubuntu Linux
#Files larger than 10 MB in current Directory
find . -xdev -size +10M -exec ls -lh {} \;
#Files larger than 1GB in current Directory
find . -xdev -size +1G -exec ls -lh {} \;
#Files larger than 1GB from Root
sudo find / -xdev -size +1G -exec ls -lh {} \;
#Files larger than 1GB in folder folder1