Skip to content

Instantly share code, notes, and snippets.

@jhgorse
Last active June 16, 2016 18:13
Show Gist options
  • Select an option

  • Save jhgorse/a7daa3197250b14987f2f6874f8bb189 to your computer and use it in GitHub Desktop.

Select an option

Save jhgorse/a7daa3197250b14987f2f6874f8bb189 to your computer and use it in GitHub Desktop.
Bootstrapping bash vcsh externally
#!/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
@jhgorse

jhgorse commented Jun 16, 2016

Copy link
Copy Markdown
Author

/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

@jhgorse

jhgorse commented Jun 16, 2016

Copy link
Copy Markdown
Author

doesn't work

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment