Skip to content

Instantly share code, notes, and snippets.

@realmahdi
Forked from punkdata/pm_install.sh
Last active May 13, 2018 08:37
Show Gist options
  • Save realmahdi/a22dc9c6121714dac8c79ea6f7f0df2e to your computer and use it in GitHub Desktop.
Save realmahdi/a22dc9c6121714dac8c79ea6f7f0df2e to your computer and use it in GitHub Desktop.
Postman Install Ubuntu 18.04 LTS
#!/bin/sh
wget https://dl.pstmn.io/download/latest/linux64 -O postman.tar.gz
sudo tar -xzf postman.tar.gz -C /opt
sudo ln -s /opt/Postman/Postman /usr/bin/postman
#Create a Desktop Entry
cat > ~/.local/share/applications/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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment