Skip to content

Instantly share code, notes, and snippets.

@anEXPer
Created December 31, 2013 17:18
Show Gist options
  • Save anEXPer/8199789 to your computer and use it in GitHub Desktop.
Save anEXPer/8199789 to your computer and use it in GitHub Desktop.
A quick shell script for installing the latest mac edge build of the cf cli.
#!/bin/bash
gcf --version
cd ~/Downloads
curl -sS http://go-cli.s3.amazonaws.com/gcf-darwin-amd64.tgz > cfcli.tgz
tar xjvf cfcli.tgz
rm cfcli.tgz
mv gcf /usr/local/bin
cd ~
gcf --version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment