我正在尝试编写一个从头到尾安装 rbenv 的 bash 脚本
但是有些东西不起作用,主要是我正在更改目录,但仅在子shell中。
#!/bin/bash
echo "installing rbenv ruby manager manager"
cd ~
git clone git://github.com/sstephenson/rbenv.git .rbenv
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bash_profile
echo 'eval "$(rbenv init -)"' >> ~/.bash_profile
source .bash_profile
echo "installing ruby build for rbenv"
git clone https://github.com/sstephenson/ruby-build.git
cd ruby-build
sudo ./install.sh
echo "rbenv and ruby-build have been installed, installing ruby now.."
sleep 2
read -p "would you like chronospere to install ruby 1.9.3 [y/n]" RESP
if [ "$RESP" = "y" ]; then
rbenv install 1.9.3-p327
rbenv rehash
rbenv global 1.9.3-p327
ruby -v
else
echo "alrigt skipping.. vagrant has rbenv installed you can install ruby it at your leisure "
echo "hold cmd, and double clck https://github.com/sstephenson/rbenv for more info"
fi
cd ~
所以看起来好像安装它有效。但是我的大部分代码都没有运行,或者没有在 id 喜欢的地方运行。
vagrant@precise64:/vagrant$ ruby -v
ruby 1.8.7 (2012-02-08 patchlevel 358) [x86_64-linux]
vagrant@precise64:/vagrant$ rbenv
The program 'rbenv' is currently not installed. You can install it by typing:
sudo apt-get install rbenv
正如你所看到的,它好像没有安装任何东西,只是发生的事情是source .bash_profile
从未发生过
vagrant@precise64:/vagrant$ cd
vagrant@precise64:~$ cd ~
vagrant@precise64:~$ source .bash_profile
在我手动获取 bash_profile 之后
vagrant@precise64:~$ rbenv
rbenv 0.4.0-45-g060f141
vagrant@precise64:~$ rbenv versions
* system (set by /home/vagrant/.rbenv/version)
1.9.3-p327
vagrant@precise64:~$ rbenv global 1.9.3-p327
vagrant@precise64:~$ ruby -v
ruby 1.9.3p327 (2012-11-10 revision 37606) [x86_64-linux]
所以你可以看到它好像代码正在运行,只是没有从一个目录移动到下一个目录。我什至不知道这是否可能。我从 ~ / (HOME) 移动到 /ruby-build 回到 ~ 然后到 /vagrant。这在单个 bash 脚本中是否可行。