-
-
Save susanhoffs/d9d6102cf180edb716e18e8d5219e8af to your computer and use it in GitHub Desktop.
Install Postman on CentOS 7
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
cat > ~/Desktop/postman.desktop <<EOL | |
[Desktop Entry] | |
Encoding=UTF-8 | |
Name=Postman | |
Exec=postman | |
Icon=/opt/Postman/resources/app/assets/icon.png | |
Terminal=false | |
Type=Application | |
Categories=Development; | |
EOL |
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
#!/bin/bash | |
cd /tmp || exit | |
echo "Downloading Postman ..." | |
wget -q https://dl.pstmn.io/download/latest/linux?arch=64 -O postman.tar.gz | |
tar -xzf postman.tar.gz | |
rm postman.tar.gz | |
echo "Installing to opt..." | |
if [ -d "/opt/Postman" ];then | |
sudo rm -rf /opt/Postman | |
fi | |
sudo mv Postman /opt/Postman | |
echo "Creating symbolic link..." | |
if [ -L "/usr/bin/postman" ];then | |
sudo rm -f /usr/bin/postman | |
fi | |
sudo ln -s /opt/Postman/Postman /usr/bin/postman | |
echo "Installation completed successfully." | |
echo "You can use Postman!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment