按照此处的说明进行操作,手动操作一切正常。但是,当我在 bash 脚本中使用指令时,我得到rbenv command not found
了因为source ~/.bashrc
没有正确执行。这是怎么回事?感觉我以前在别的事情上遇到过这个......
*执行位已设置,运行 dos2unix,并#!/bin/bash
在顶部。
#!/bin/bash
git clone https://github.com/rbenv/rbenv.git ~/.rbenv
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrc
echo 'eval "$(rbenv init -)"' >> ~/.bashrc
source ~/.bashrc
git clone https://github.com/rbenv/ruby-build.git ~/.rbenv/plugins/ruby-build
rbenv install 2.3.1