Skip to content

Instantly share code, notes, and snippets.

@Cooba13
Last active October 11, 2018 13:06
Show Gist options
  • Save Cooba13/9cf7e7d02e96f0003ca53aea9e72fc80 to your computer and use it in GitHub Desktop.
Save Cooba13/9cf7e7d02e96f0003ca53aea9e72fc80 to your computer and use it in GitHub Desktop.
Just collecting aliases which makes my life easier ...
alias update-pip2="pip list --outdated --format=freeze | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip install -U --user"
alias update-pip3="pip3 list --outdated --format freeze | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip3 install -U --user"
alias update-pip="update-pip2; update-pip3"
alias update-all="sudo dnf update -y; flatpak update -y"
alias grep="grep --color=auto"
alias ssh-pass="ssh -o PreferredAuthentications=password -o PubkeyAuthentication=no"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment