Skip to content

Instantly share code, notes, and snippets.

View paride's full-sized avatar

Paride Legovini paride

View GitHub Profile
@smoser
smoser / README.md
Last active July 17, 2020 15:05
build-upstream-pkg build a package from upstream source

build-upstream-pkg

Usage: build-upstream-pkg [ options ] <<ARGUMENTS>>

   build-upstream-pkg <upstream-commitish> <packaging-commitish>

   options:
      --version  VERSION    make the upstream version VERSION
                            default is to use git-describe

--output DIR put created files in DIR

@cjp
cjp / delete-vpc.sh
Created March 5, 2017 15:22
Delete AWS VPC including dependencies
#!/bin/sh
#
# Delete a VPC and its dependencies
if [ -z "$1" ] then
echo "usage: $0 <vpcid>"
exit 64
fi
vpcid="$1"