diff --git a/IT/Scripting.md b/IT/Scripting.md index 5aeaf9d..df61609 100644 --- a/IT/Scripting.md +++ b/IT/Scripting.md @@ -46,8 +46,8 @@ fi ``` ## Commands -| Command | Description | -| ------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `exit [CODE]` | Make the script process exit, where `[CODE]` is the exit code the process will terminate with. | -| `read [VARIABLE]` | Read user input into the provided variable. | -| `test [CONDITION]` | Used for conditionals, `test` will return an exit code of 0 if the test evaluates to true. Refer to the [manual](https://man7.org/linux/man-pages/man1/test.1.html) for more info. | +| Command | Description | +| ------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `exit [CODE]` | Make the script process exit, where `[CODE]` is the exit code the process will terminate with. | +| `read [VARIABLE]` | Read user input into the provided variable. | +| `test [CONDITION]` | Used for conditionals, `test` will return an exit code of 0 if the test evaluates to true. Refer to the [manual](https://man7.org/linux/man-pages/man1/test.1.html) for more info. As a shorthand, you can enclose the condition in square brackets: `[]` |