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
@mskian
mskian / install-postman.sh
Last active February 26, 2025 18:26 — forked from aviskase/Postman.desktop
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
@SanderTheDragon
SanderTheDragon / postman-deb.sh
Last active April 6, 2025 00:55
A shellscript to create a Postman .deb file, for simple installation on Debian-based Linux distro's. Also creates a .desktop file.
#!/bin/sh
# SPDX-FileCopyrightText: 2017-2024 SanderTheDragon <[email protected]>
#
# SPDX-License-Identifier: MIT
arch=$(dpkg --print-architecture)
echo "Detected architecture: $arch"
case "$arch" in