git.nynim.org
/
dotfiles.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
.vim: vim-plug @ddce935
[dotfiles.git]
/
bin
/
pip-outdated
1
#!/bin/sh
2
# Show all outdated `pip` packages
3
pip
=
$(type -P pip3)
4
$pip
list
--outdated --format
=
freeze
|
\
5
grep
-v
'^\-e'
|
\
6
cut
-d
=
-f
1