Opスクリプトのヘルプテキストを設定する
CLI で可能な補完を一覧表示するために が?
使用されている場合、op スクリプトとその引数を説明するヘルプテキストを提供できます。ヘルプテキストを設定するには、ステートメントを含めますdescription
。
description descriptive-text;
以下の階層レベルでこのステートメントを使用することができます。
以下の例は、設定と結果の出力を示しています。
例: Op スクリプトのヘルプテキストの設定
スクリプトのヘルプテキストを設定し、結果の出力を表示します。
[edit system scripts op] user@host# set file interface.xsl description "Test the interface" user@host# commit ... [edit system scripts op] user@host# set file ? Possible completions: <name> Local filename of the script file interface.xsl Test the interface
スクリプトのコマンドライン引数のヘルプテキストを設定し、結果の出力を表示します。
[edit system scripts op file interface.xsl arguments] user@host# set t1 description "Search for T1 interfaces" user@host# set t3 description "Search for T3 interfaces" user@host# commit [edit system scripts op file interface.xsl arguments] user@host# set ? Possible completions: <name> Name of the argument t1 Search for T1 interfaces t3 Search for T3 interfaces