Skip to content

Instantly share code, notes, and snippets.

View dmutende's full-sized avatar
🏠
Working from home

Derek Prince dmutende

🏠
Working from home
View GitHub Profile
@dmutende
dmutende / postman-deb.sh
Last active August 5, 2019 09:20 — 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)