bundle --help
コマンド (例: install) とユーティリティ (例: show) を一覧表示するヘルプ ファイルを表示します。特定のコマンドまたはユーティリティの使用方法の詳細を表示するにはどうすればよいですか?
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 に答える