Download rvm and install later?

How do you download rvm without installing it?

On Sun, Sep 18, 2011 at 11:51 AM, 7stud – [email protected]
wrote:

How do you download rvm without installing it?
curl -s https://rvm.beginrescueend.com/install/rvm

the << operator in the default instructions is a redirect the
following input to the following output.
bash is the receiver.
Thus,
$ bash < <(curl -s https://rvm.beginrescueend.com/install/rvm)

from shell:
hey curl go grab https://rvm.beginrescueend.com/install/rvm and be -s
(silent) about it.
Now all that stuff that curl just grabbed, go tell bash about it.

bash, get to work.

Hope this helps.

Andrew McElroy
TryRuby.org

On Sun, Sep 18, 2011 at 12:08 PM, andrew mcelroy [email protected]
wrote:

On Sun, Sep 18, 2011 at 11:51 AM, 7stud – [email protected] wrote:

How do you download rvm without installing it?
curl -s https://rvm.beginrescueend.com/install/rvm

it should be noted that https://rvm.beginrescueend.com/install/rvm is
just a bash script.

On Sun, Sep 18, 2011 at 12:10 PM, andrew mcelroy [email protected]
wrote:

On Sun, Sep 18, 2011 at 12:08 PM, andrew mcelroy [email protected] wrote:

On Sun, Sep 18, 2011 at 11:51 AM, 7stud – [email protected] wrote:

How do you download rvm without installing it?
curl -s https://rvm.beginrescueend.com/install/rvm

it should be noted that https://rvm.beginrescueend.com/install/rvm is
just a bash script.

However, for the ‘install later part’
be sure to grab this:

archive=“${rvm_archives_path}/rvm-${version}.tar.gz”
url=“${rvm_releases_url}/rvm-${version}.tar.gz”

Andrew McElroy