Skip to content

Instantly share code, notes, and snippets.

@tralamazza
Created March 21, 2012 09:29
Show Gist options
  • Select an option

  • Save tralamazza/2145802 to your computer and use it in GitHub Desktop.

Select an option

Save tralamazza/2145802 to your computer and use it in GitHub Desktop.
register nodester coupon
#!/bin/sh
if [ $# -lt 3 ]; then
echo "Missing arguments"
exit 1
fi
COUPON=$1
PASSWORD=$2
EMAIL=$3
curl -X POST -d "coupon=$COUPON&user=$USER&password=$PASSWORD&email=$EMAIL&rsakey=`cat ~/.ssh/id_rsa.pub`" http://nodester.com/user
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment