Skip to content

Instantly share code, notes, and snippets.

@ddre54
Last active March 10, 2016 21:27
Show Gist options
  • Save ddre54/cde99a13861f1287bd84 to your computer and use it in GitHub Desktop.
Save ddre54/cde99a13861f1287bd84 to your computer and use it in GitHub Desktop.
Command to find files using most of the disk space
# /bin/bash
sudo find / -type f -size +10M -exec ls -lh {} \;
# Truncate files that need sudo
sudo truncate -s0 file.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment