Skip to content

Instantly share code, notes, and snippets.

View asp95's full-sized avatar

asp95 asp95

View GitHub Profile
@asp95
asp95 / postman-deb.sh
Created May 29, 2019 20:23 — 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)