Skip to content

Instantly share code, notes, and snippets.

View richardwellerson's full-sized avatar
🇧🇷
God, Motherland and Family.

Richard Wellerson richardwellerson

🇧🇷
God, Motherland and Family.
View GitHub Profile
@richardwellerson
richardwellerson / install-postman.sh
Created February 26, 2025 18:26 — forked from mskian/install-postman.sh
Install Postman on Ubuntu via Shell script
#!/bin/bash
cd /tmp || exit
echo "Downloading Postman ..."
wget -q https://dl.pstmn.io/download/latest/linux?arch=64 -O postman.tar.gz
tar -xzf postman.tar.gz
rm postman.tar.gz
echo "Installing to opt..."
if [ -d "/opt/Postman" ];then
sudo rm -rf /opt/Postman