diff --git a/IT/Scripting.md b/IT/Scripting.md index 9e89959..848c14a 100644 --- a/IT/Scripting.md +++ b/IT/Scripting.md @@ -19,8 +19,12 @@ MY_VARIABLE="Hi Mom!" echo $MY_VARIABLE ``` +## Quotes +In Bash, different styles of quotes mean different things: + ## Commands -| Command | Description | -| ------------- | ---------------------------------------------------- | -| `exit [CODE]` | Make the script process exit with exit code `[CODE]` | \ No newline at end of file +| Command | Description | +| ------------- | ---------------------------------------------------------------------------------------------- | +| `exit [CODE]` | Make the script process exit, where `[CODE]` is the exit code the process will terminate with. | +| | | \ No newline at end of file