Skip to content

Instantly share code, notes, and snippets.

@bdaley
Created May 12, 2020 00:27
Show Gist options
  • Save bdaley/10b73dfae7c519b3a9be90291726b427 to your computer and use it in GitHub Desktop.
Save bdaley/10b73dfae7c519b3a9be90291726b427 to your computer and use it in GitHub Desktop.
Find large files in unix/linux
find / -xdev -type f -size +100M -print | xargs ls -lh | sort -k5,5 -h -r
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment