From 491f98cf0f40409ef0a033848a5a88bdb9df0a89 Mon Sep 17 00:00:00 2001 From: SirNapkin1334 <31591796+SirNapkin1334@users.noreply.github.com> Date: Wed, 25 Apr 2018 15:32:36 -0700 Subject: [PATCH] Improve Wildcard --- Scripting.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scripting.md b/Scripting.md index 4d016c5..5389dbb 100644 --- a/Scripting.md +++ b/Scripting.md @@ -16,7 +16,7 @@ GodMode9 scripts resemble shell scripts. Comments are denoted by `#` and work an An unknown command will lead to a script abort. #### Wildcards -(please reword this better, I don't know how to say it well) - (short explanation of what they do here) - GodMode9 has support for two types of Wildcards, `*` and `?`. `*` will check for anything of any length, while `?` will check for only one character (multiple `?` can be used in a row to make a set amount of characters) +A wildcard is a character that will be seen as any character or sequence of characters in a search. GodMode9 has support for two types of Wildcards, `*` and `?`. `*` will check for anything of any length, while `?` will check for only one character (multiple `?` can be used in a row to make a set amount of characters). #### `-o` and `-s` Switches You can use `-o` and/or `-s` switches on any command, or `--optional` / `--silent` respectively. `-o` Continues on failures of a command, and `-s` will try to suppress all error messages.