0

bundle --help显示列出命令(即安装)和实用程序(即显示)的帮助文件。如何查看有关如何使用特定命令或实用程序的详细信息?

4

1 回答 1

1

我在命令行中通过反复试验发现了这一点:

bundle --help show
  Usage:
    bundle show [GEM]

  Options:
        [--paths=List the paths of all gems that are required by your Gemfile.]
        [--no-color=Disable colorization in output]
    -V, [--verbose=Enable verbose output mode]

  Description:
    Show lists the names and versions of all gems that are required by your Gemfile. Calling show with [GEM] will list the exact location of that gem on your machine.

所以一般来说,输入bundle --help <command or utility name>

于 2013-01-02T20:57:34.740 回答