From 1616bde09b307c4b4ba895c0057f920c7b57b1b7 Mon Sep 17 00:00:00 2001 From: Camotoy <20743703+Camotoy@users.noreply.github.com> Date: Mon, 18 Jan 2021 19:04:37 -0500 Subject: [PATCH] Create page --- Standalone-Command-Line-Arguments.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 Standalone-Command-Line-Arguments.md diff --git a/Standalone-Command-Line-Arguments.md b/Standalone-Command-Line-Arguments.md new file mode 100644 index 0000000..1de3a85 --- /dev/null +++ b/Standalone-Command-Line-Arguments.md @@ -0,0 +1,24 @@ +# General command-line arguments + +### `--config [file]` + +**Alias: `-c`** + +Points to an alternative config file to use. + +### `--gui` / `--nogui` + +**Alias: `gui` / `nogui`** + +Forces GUI or non-GUI usage, depending on context. + +# Overriding specific config values + +Overriding a standard config option (e.g. `command-suggestions`): + +`--command-suggestions=false` + +Overriding a nested config option(e.g. the `remote` section with `address`): + +`--remote.address=test.geysermc.org` +