Skip to content

Instantly share code, notes, and snippets.

@peterquiel
Forked from punkdata/pm_install.sh
Created March 22, 2018 15:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save peterquiel/bc42cd08d81ef759e60e70142f2c4548 to your computer and use it in GitHub Desktop.
Save peterquiel/bc42cd08d81ef759e60e70142f2c4548 to your computer and use it in GitHub Desktop.
Postman Install Ubuntu 17.10
#!/usr/bash
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