Skip to content

Instantly share code, notes, and snippets.

@bofrede
Last active January 4, 2018 10:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bofrede/2fd4a62b8378d732a83f51c0ba49ff85 to your computer and use it in GitHub Desktop.
Save bofrede/2fd4a62b8378d732a83f51c0ba49ff85 to your computer and use it in GitHub Desktop.
Script to upgrade Postman on Linux
#!/usr/bin/env bash
# Derived from: https://blog.bluematador.com/posts/postman-how-to-install-on-ubuntu-1604/
wget https://dl.pstmn.io/download/latest/linux64 -O ~/Downloads/postman.tar.gz
sudo rm -rf /opt/Postman
sudo tar -xzf ~/Downloads/postman.tar.gz -C /opt
rm ~/Downloads/postman.tar.gz
# sudo ln -s /opt/Postman/Postman /usr/bin/postman
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment