Last active
June 16, 2016 18:13
-
-
Save jhgorse/a7daa3197250b14987f2f6874f8bb189 to your computer and use it in GitHub Desktop.
Bootstrapping bash vcsh externally
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Bootstrapping bash vcsh externally | |
# https://github.com/RichiH/vcsh/issues/202 | |
# /bin/sh "$(curl -fsSL whatever.dom/vsch_bash.sh)" | |
wget https://raw.githubusercontent.com/RichiH/vcsh/master/vcsh | |
chmod +x vcsh | |
./vcsh clone https://github.com/jhgorse/bash.git bash # Perhaps a recursive clone some day | |
./vcsh bash submodule init | |
./vcsh bash submodule update |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
/bin/sh "$(curl -fsSL https://gist.githubusercontent.com/jhgorse/a7daa3197250b14987f2f6874f8bb189/raw/7931d469d22dce644539885f3160a6bde933fc86/vsch_bash.sh)"
cd
mv .bashrc .bashrc.bkup
mkdir bin && cd bin/
wget https://raw.githubusercontent.com/RichiH/vcsh/master/vcsh
chmod +x vcsh
./vcsh clone https://github.com/jhgorse/bash.git bash # Perhaps a recursive clone some day
./vcsh bash submodule init
./vcsh bash submodule update