Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add alternate installation method to curl the nave.sh file and run it #40

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 9 additions & 0 deletions README.md
Expand Up @@ -75,6 +75,15 @@ equivalent to your init script:


export PATH=$NAVE_PATH:$PATH export PATH=$NAVE_PATH:$PATH


## Alternate Installation

You can also add this to your `~/.bashrc` or wherever you keep your
aliases to always use the latest copy from github:

```
nave() { sudo sh -c "$(curl -s 'https://raw.github.com/isaacs/nave/master/nave.sh') $*"; }
```

## Configuration ## Configuration


Nave will source `~/.naverc` on initialization of a new subshell, if it Nave will source `~/.naverc` on initialization of a new subshell, if it
Expand Down