From 370de994c7d58e7d86814dcb07a3367e35a5e99d Mon Sep 17 00:00:00 2001 From: Christian Bundy Date: Mon, 7 Jul 2014 14:25:38 -0700 Subject: [PATCH] Update readme to Fraction repo --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 9498945..c0dc45e 100644 --- a/README.md +++ b/README.md @@ -3,13 +3,13 @@ Tired of having to type this janky command to [ssh](http://manpages.ubuntu.com/manpages/saucy/en/man1/ssh.1.html) and [cd](http://manpages.ubuntu.com/manpages/saucy/en/man1/cd.1posix.html) into unfamiliar remote servers? ```sh -ssh -t user@pretend.io "cd /over/the/rainbow; exec \$SHELL" +ssh -t user@fraction.io "cd /foo/bar; exec \$SHELL" ``` Me too. ```sh -sshcd user@pretend.io:/over/the/rainbow +sshcd user@fraction.io:/foo/bar ``` ## Installation @@ -17,21 +17,21 @@ sshcd user@pretend.io:/over/the/rainbow The recommended OS X installation method is with [Homebrew](http://brew.sh/). ```sh -brew tap christianbundy/homebrew-tap +brew tap fraction/homebrew-formulae brew install sshcd ``` Alternatively, you can install it with Git. ```sh -git clone https://github.com/christianbundy/sshcd +git clone https://github.com/fraction/sshcd sudo make -C sshcd install PREFIX=/usr/local ``` Don't want to use Git? You can also use wget. ```sh -wget https://github.com/christianbundy/sshcd/archive/v1.0.2.tar.gz +wget https://github.com/fraction/sshcd/archive/v1.0.2.tar.gz tar --get --gzip < v1.0.2.tar.gz sudo make -C sshcd-1.0.2 install PREFIX=/usr/local ``` @@ -41,11 +41,11 @@ sudo make -C sshcd-1.0.2 install PREFIX=/usr/local The default usage is pretty simple. ```sh -sshcd root@example.com:/your/favorite/folder +sshcd user@fraction.io:/foo/bar ``` The tool supports prepended flags, too! ```sh -sshcd -v root@example.com:/lets/get/verbose +sshcd -v user@fraction.io:/foo/bar ```