Skip to content

Instantly share code, notes, and snippets.

@philopon
Last active August 30, 2015 08:26
Show Gist options
  • Select an option

  • Save philopon/b51788ae5c217dc7d269 to your computer and use it in GitHub Desktop.

Select an option

Save philopon/b51788ae5c217dc7d269 to your computer and use it in GitHub Desktop.
get-latest-newrelic-agent.sh
#!/bin/bash
BASE=http://download.newrelic.com/agent_sdk
FILE=`curl -L $BASE | sed -e '/<\/a>/ !d; s/.*<a *href="\(.*\)">.*/\1/g; /tar\.gz/ !d' | sort | tail -n 1`
curl -LO $BASE/$FILE
echo $FILE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment