Skip to content

Instantly share code, notes, and snippets.

@5n00p4eg
Forked from udomsak/postman_fc29_install.sh
Last active November 14, 2019 13:41
Show Gist options
  • Save 5n00p4eg/3da52958ff5c892d79d180152aeb61b4 to your computer and use it in GitHub Desktop.
Save 5n00p4eg/3da52958ff5c892d79d180152aeb61b4 to your computer and use it in GitHub Desktop.
Install postman on Fedora core 29 - Jan 2019
#!/bin/bash
wget -cN https://dl.pstmn.io/download/latest/linux64 -O postman-linux-x64.tar.gz
sudo tar xvzf postman-linux-x64.tar.gz -C /opt
sudo ln -sf /opt/Postman/Postman /usr/bin/postman
cat << EOF > /usr/local/share/applications/postman2.desktop
[Desktop Entry]
Name=Postman
GenericName=API Client
X-GNOME-FullName=Postman API Client
Comment=Make and view REST API calls and responses
Keywords=api;
Exec=/opt/Postman/Postman
Terminal=false
Type=Application
Icon=/opt/Postman/app/resources/app/assets/icon.png
Categories=Development;Utilities;
EOF
@5n00p4eg
Copy link
Author

$ wget -O - https://gist.github.com/5n00p4eg/3da52958ff5c892d79d180152aeb61b4/raw/67bbd270dd2e362c82d6dfccc03517c81a56d2c9/postman_fc29_install.sh | sudo bash

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment