Skip to content

Instantly share code, notes, and snippets.

@bongardino
Last active March 21, 2019 20:07
Show Gist options
  • Save bongardino/bf3258a6b6c5babdb9de64ec0aac4e47 to your computer and use it in GitHub Desktop.
Save bongardino/bf3258a6b6c5babdb9de64ec0aac4e47 to your computer and use it in GitHub Desktop.
nix things I always google
# find all, minus permisson errors
find / -type f -iname "*rotate*" 2>/dev/null
# find the biggest files / directories
sudo du -a / 2>/dev/null | sort -n -r | head -n 20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment