Skip to content

Instantly share code, notes, and snippets.

@jasenmichael
Created January 3, 2019 18:50
Show Gist options
  • Save jasenmichael/6b6daf4c76061375489219dd984459c4 to your computer and use it in GitHub Desktop.
Save jasenmichael/6b6daf4c76061375489219dd984459c4 to your computer and use it in GitHub Desktop.
install postman ubuntu
#!/bin/bash
# Get postman app
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/app/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