Skip to content

Instantly share code, notes, and snippets.

@Aviksaikat
Created April 9, 2024 15:59
Show Gist options
  • Save Aviksaikat/152fee7546ba50a447947f443f1dafde to your computer and use it in GitHub Desktop.
Save Aviksaikat/152fee7546ba50a447947f443f1dafde to your computer and use it in GitHub Desktop.
one liner to upgrade all pipx packages
pipx list --short | cut -d ' ' -f1 | while read line; do pipx upgrade $line; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment