Skip to content

Instantly share code, notes, and snippets.

@misterzik
Created January 26, 2015 16:04
Show Gist options
  • Save misterzik/defa83ea760ac728936d to your computer and use it in GitHub Desktop.
Save misterzik/defa83ea760ac728936d to your computer and use it in GitHub Desktop.
Files Change in the last day - SSH Hints
#Files Change in the Last Day - SSH Hints, sorted by size - www.insanen.com
sudo find / -type f -mtime -1 -print0 | xargs -0 du -sk | sort -nr
#We use sudo to gain admin access and be able to display all changed files.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment