Просмотр исходного кода

Make `rbenv help` a little nicer

pull/360/head^2
Sam Stephenson 15 лет назад
Родитель
Сommit
72b62e13aa
1 измененных файлов: 13 добавлений и 3 удалений
  1. +13
    -3
      libexec/rbenv-help

+ 13
- 3
libexec/rbenv-help Просмотреть файл

@ -31,8 +31,8 @@ Some useful rbenv commands are:
which Show the full path for the given Ruby command which Show the full path for the given Ruby command
whence List all Ruby versions with the given 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"
See 'rbenv help <command>' for information on a specific command.
For full documentation, see: https://github.com/sstephenson/rbenv#readme"
;; ;;
global) echo "usage: rbenv global <version> global) echo "usage: rbenv global <version>
@ -74,5 +74,15 @@ whence) echo "usage: rbenv whence
Lists all Ruby versions with the given command installed." Lists all Ruby versions with the given command installed."
;; ;;
*) echo "No command arguments needed or invalid/undocumented command."
*)
command_path="$(command -v "rbenv-$1" || true)"
if [ -n "$command_path" ]; then
echo "Sorry, the \`$1' command isn't documented yet."
echo
echo "You can view the command's source here:"
echo "$command_path"
echo
else
echo "rbenv: no such command \`$1'"
fi
esac esac

Загрузка…
Отмена
Сохранить