summaryrefslogtreecommitdiff
path: root/dotfiles/bashrc.sync
diff options
context:
space:
mode:
authorBlaise Thompson <blaise@untzag.com>2018-06-14 10:00:49 -0500
committerBlaise Thompson <blaise@untzag.com>2018-06-14 10:00:49 -0500
commit6470687948dbdad3d3f1ecb95c899ec098e0ea46 (patch)
treefb91afd205878eb63c5205752f31eafb75815c8f /dotfiles/bashrc.sync
parent1c04b6bca56c51e06e12186646ae0b7f640fa0be (diff)
2018-06-14 10:00
Diffstat (limited to 'dotfiles/bashrc.sync')
-rw-r--r--dotfiles/bashrc.sync4
1 files changed, 4 insertions, 0 deletions
diff --git a/dotfiles/bashrc.sync b/dotfiles/bashrc.sync
index 9d107fe..3cf596a 100644
--- a/dotfiles/bashrc.sync
+++ b/dotfiles/bashrc.sync
@@ -59,3 +59,7 @@ function print-yellow {
NC='\033[0m' # No Color
printf "${YELLOW}$*${NC}\n"
}
+
+function pip3-update-all {
+ pip3 freeze --local | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip3 install -U
+}