Skip to content

Instantly share code, notes, and snippets.

@beherca
Created November 11, 2015 11:28
Show Gist options
  • Save beherca/96d1e0bfdade6f297f38 to your computer and use it in GitHub Desktop.
Save beherca/96d1e0bfdade6f297f38 to your computer and use it in GitHub Desktop.
Find Large File on Ubuntu
# Find Largest File, http://www.cyberciti.biz/faq/find-large-files-linux/
sudo du -a | sort -nr | head
sudo du -sx /* 2>/dev/null | sort -n
#Delete file older than 10 days
# find /usr/backup/jira -type f -mtime +10 -exec rm {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment