summaryrefslogtreecommitdiff
path: root/doc/ja/autogen/user/guile_commands.asciidoc
diff options
context:
space:
mode:
Diffstat (limited to 'doc/ja/autogen/user/guile_commands.asciidoc')
-rw-r--r--doc/ja/autogen/user/guile_commands.asciidoc22
1 files changed, 22 insertions, 0 deletions
diff --git a/doc/ja/autogen/user/guile_commands.asciidoc b/doc/ja/autogen/user/guile_commands.asciidoc
new file mode 100644
index 000000000..aa8cc5c84
--- /dev/null
+++ b/doc/ja/autogen/user/guile_commands.asciidoc
@@ -0,0 +1,22 @@
+[[command_guile_guile]]
+[command]*`guile`* スクリプトをリストアップ/ロード/アンロード::
+
+----
+/guile list|listfull [<name>]
+ load [-q] <filename>
+ autoload
+ reload|unload [-q] [<name>]
+
+ list: ロード済みスクリプトをリストアップ
+listfull: ロード済みスクリプトをリストアップ (詳細)
+ load: スクリプトをロード
+autoload: "autoload" ディレクトリに含まれる全てのスクリプトをロード
+ reload: スクリプトのリロード (名前を指定しなかった場合、全てのスクリプトをアンロードし、"autoload" ディレクトリに含まれる全てのスクリプトをロード)
+ unload: スクリプトのアンロード (名前を指定しなかった場合、全てのスクリプトをアンロード)
+filename: ロードするスクリプト (ファイル)
+ name: スクリプト名 (名前は "register" 関数を呼び出すために使われる)
+ -q: 出力抑制モード: メッセージを表示しない
+
+引数無しの場合、全てのロード済みスクリプトをリストアップします。
+----
+