This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Defaults to pip2 unless otherwise specified | |
if [ "$1" = 3 ]; then | |
PYTHON_VERSION=3 | |
fi | |
function outdated() { | |
# List out outdated python packages delimited by newline | |
pip${PYTHON_VERSION} list --outdated \ |