1
0
mirror of https://github.com/pyenv/pyenv.git synced 2025-11-12 05:23:47 -05:00

Document rbenv which and rbenv whence

This commit is contained in:
Sam Stephenson
2011-09-28 10:48:04 -05:00
parent 058e2cb7a6
commit ada26ab92e
3 changed files with 64 additions and 15 deletions

View File

@@ -21,13 +21,15 @@ case "$1" in
"") echo "usage: rbenv <command> [<args>]
Some useful rbenv commands are:
commands List all commands
commands List all rbenv commands
rehash Rehash rbenv shims (run this after installing binaries)
global Set or show the global Ruby version
local Set or show the local directory-specific Ruby version
shell Set or show the shell-specific Ruby version
version Show the current Ruby version
versions List all Ruby versions known by rbenv
which Show the full path for the given Ruby command
whence List all Ruby versions with the given command
See 'rbenv help <command>' for more information on a specific command.
For more information, see: https://github.com/sstephenson/rbenv#readme"
@@ -63,5 +65,14 @@ project-specific versions and the global version.
$(print_set_version)"
;;
which) echo "usage: rbenv which <command>
Displays the full path to the binary that rbenv will execute when you
run the given command."
;;
whence) echo "usage: rbenv whence <command>
Lists all Ruby versions with the given command installed."
;;
*) echo "No command arguments needed or invalid/undocumented command."
esac