Ubuntu Pastebin

Paste from bob at Sat, 1 Oct 2016 18:56:50 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
#!/bin/bash

 gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3
   curl -sSL https://github.com/rvm/rvm/tarball/stable -o rvm-stable.tar.gz
   mkdir rvm && cd rvm
   tar --strip-components=1 -xzf /tmp/rvm-stable.tar.gz
   ./install --auto-dotfiles
   source /tmp/.rvm/scripts/rvm
   cd
   source /etc/profile.d/rvm.sh
   rvm get head
   sleep 10
   rvm requirements
   sleep 10
   rvm install 2.3.0
Download as text