Skip to content

Instantly share code, notes, and snippets.

@amunchet
Created September 1, 2021 16:48
Show Gist options
  • Save amunchet/6385aa3e41aff64035eb2b9d2d746e36 to your computer and use it in GitHub Desktop.
Save amunchet/6385aa3e41aff64035eb2b9d2d746e36 to your computer and use it in GitHub Desktop.
Find large files in linux
#!/bin/bash
du -a . | sort -n -r | head -n 20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment