I installed rbenv according to the instructions at https://github.com/sstephenson/rbenv#section_2
Restarting my shell at point 4 will result in an error
$ rbenv init -
rbenv: no such command `init'
Trying to run the command directly from its folder doesn't work either.
$ cd .rbenv/bin
$ ./rbenv init -
rbenv: no such command `init'
My $PATH
$ echo $PATH
/home/myusername/.rbenv/bin:/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin:/home/myusername/bin
Running rbenv install works until rbenv rehash is called
$ rbenv install 1.9.3-p0
Downloading http://pyyaml.org/download/libyaml/yaml-0.1.4.tar.gz...
Installing yaml-0.1.4...
Installed yaml-0.1.4 to /home/hbrandl/.rbenv/versions/1.9.3-p0
Downloading http://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3-p0.tar.gz...
Installing ruby-1.9.3-p0...
Installed ruby-1.9.3-p0 to /home/hbrandl/.rbenv/versions/1.9.3-p0
rbenv: no such command `rehash'
All other rbenv commands don't seem to work.
Any help or pointers greatly appreciated.