Skip to content

Instantly share code, notes, and snippets.

View ubermachine's full-sized avatar
💭
when in doubt use bash

Shivam katoch ubermachine

💭
when in doubt use bash
View GitHub Profile
@ubermachine
ubermachine / install-postman.sh
Created February 26, 2023 13:45 — forked from chetanppatil/install-postman.sh
Install Native Postman On Linux
#!/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