我刚刚开始狂欢(今天第一次)并且真正做到了噩梦!
我只需要安装/配置RVM并安装Ruby,但使用网站上的命令:
curl -sSL https://get.rvm.io | bash -s stable
无法在bash文件中运行,所以我想出了:
#!/bin/bash
rpm -ivh http://yum.puppetlabs.com/puppetlabs-release-el-7.noarch.rpm
curl -sSL https://get.rvm.io -o "install-rvm.sh"
wget --no-check-certificate https://get.rvm.io -O "install-rvm.sh"
chmod a+x "install-rvm.sh"
./install-rvm.sh stable #doesn't work when passing params#
source /etc/profile.d/rvm.sh #command not found#
问题似乎没有用,试图执行
./ install-rvm.sh
在没有params的情况下执行,但是当我传入“stable”时,它表示找不到命令。
根据我需要运行的文档
source /etc/profile.d/rvm.sh
如果我从基本shell运行它,但不会在bash文件中运行,则可以正常工作。
谢谢!