Skip to content

Instantly share code, notes, and snippets.

View edugon's full-sized avatar
🙃
¯\_(ツ)_/¯

eduu edugon

🙃
¯\_(ツ)_/¯
View GitHub Profile
@edugon
edugon / postman-deb
Last active May 2, 2020 13:17 — forked from SanderTheDragon/postman-deb.sh
A shellscript to create a Postman .deb file, for simple installation on Debian-based Linux distro's. Also creates a .desktop file.
#!/bin/sh
script=`basename "$0"`
if [ $# -gt 0 ] && [ "$1" = "-e" ]; then
e="-e"
fi
echo "Removing old Postman tarballs"
rm -f $(ls Postman*.tar.gz)