Skip to content

Instantly share code, notes, and snippets.

@mateobur
Created March 3, 2024 12:02
Show Gist options
  • Save mateobur/b7c710ff8fa1371fc8fa040100a9029f to your computer and use it in GitHub Desktop.
Save mateobur/b7c710ff8fa1371fc8fa040100a9029f to your computer and use it in GitHub Desktop.
Find big files to free space Linux
#!/bin/bash
#MINSIZE default ~ 100 MB
MINSIZE=102400
find / -type f -size +"$MINSIZE"k -exec du -sh {} \; 2>/dev/null | sort -rh
@mateobur
Copy link
Author

mateobur commented Mar 3, 2024

Find big files to free space Linux

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment