Skip to content

Instantly share code, notes, and snippets.

@SylvainMarty
Created June 1, 2022 08:40
Show Gist options
  • Save SylvainMarty/a2d9aee86de99608b9256cc04786024c to your computer and use it in GitHub Desktop.
Save SylvainMarty/a2d9aee86de99608b9256cc04786024c to your computer and use it in GitHub Desktop.
Get the 20 biggest files on a linux system
#!/bin/bash
sudo du -ah / 2>/dev/null | sort -rh | head -n 20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment