Skip to content

Instantly share code, notes, and snippets.

@Darahaas2001
Forked from lucasalvessouza/install_postaman.sh
Created October 30, 2022 10:05
Show Gist options
  • Save Darahaas2001/4cd244f00edd0ba557dd2cdfd31f6547 to your computer and use it in GitHub Desktop.
Save Darahaas2001/4cd244f00edd0ba557dd2cdfd31f6547 to your computer and use it in GitHub Desktop.
Install postman fedora
#!/bin/bash
wget 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 -s /opt/Postman/Postman /usr/bin/postman
cat << EOF > ~/.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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment