]> Tony Duckles's Git Repositories (git.nynim.org) - dotfiles.git/blob - bin/pip-outdated
.bashrc: Add python pip --user path after finalizing $PATH
[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