mirror of https://github.com/Chizi123/Dotfiles.git

Joel Grunbaum
2020-09-25 73aeec7a057eac3ec18dc4a2cb188ede9659ec8e
updated pip-upgrade to use python
1 files modified
2 ■■■ changed files
all-shells/.commonshell 2 ●●● patch | view | raw | blame | history
all-shells/.commonshell
@@ -6,7 +6,7 @@
alias less='less -r'
alias stats="find . -type f -printf '%f\n' | sed -r -n 's/.+(\..*)$/\1/p' | sort | uniq -c"
alias pip-upgrade="pip list --outdated --format=freeze | grep -v '^\-e' | cut -d = -f 1  | xargs -n1 pip install -U"
alias pip-upgrade="python -m pip list --outdated --format=freeze | grep -v '^\-e' | cut -d = -f 1  | xargs -n1 python -m pip install -U"
export EDITOR="/usr/bin/emacsclient -nw -a /usr/bin/vim"
alias ec=$EDITOR