Skip to content

Instantly share code, notes, and snippets.

@richardjortega
Created May 6, 2014 16:59
Show Gist options
  • Save richardjortega/79e4eea7096b9b23af95 to your computer and use it in GitHub Desktop.
Save richardjortega/79e4eea7096b9b23af95 to your computer and use it in GitHub Desktop.
Linux Commands [Find big ass files, truncate those files]

Switch to logrotate later for better managability.

Find big ass files

$ cd /
# This command will find top 10 files based on disk usage
$ du -hsx * | sort -rh | head -10

Truncate big ass files to Zero

$ truncate -s 0 <path/to/file>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment