dotfiles/bin/pipx-upgrade
zendesk-acicchetti c6c10fcaff pipx for binaries
2022-03-07 10:44:04 -05:00

10 lines
276 B
Bash
Executable file

#!/usr/bin/env zsh
local things_to_install=(ipython yt-dlp magic-wormhole litecli wakatime)
if [[ -x "$(command -v $things_to_install)" ]]; then
pipx reinstall-all
else
for thing_to_install in $things_to_install; do
pipx install $thing_to_install
done
fi