Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save openrijal/c9650cab9f05b5c78c3fbfcbbca0f1ff to your computer and use it in GitHub Desktop.
Save openrijal/c9650cab9f05b5c78c3fbfcbbca0f1ff to your computer and use it in GitHub Desktop.
useful oneliners
# bash command to uninstall all pip installed packages
sudo pip uninstall -y $(pip freeze | sed 's;==.*;;g' | tr '\n' ' ')
# bash command to list top 5 large files/directories
du -a / | sort -n -r | head -n 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment