Last active
January 4, 2018 10:56
-
-
Save bofrede/2fd4a62b8378d732a83f51c0ba49ff85 to your computer and use it in GitHub Desktop.
Script to upgrade Postman on Linux
This file contains 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 | |
# 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