diff --git a/IT/Scripting.md b/IT/Scripting.md index 60a5b90..1178f03 100644 --- a/IT/Scripting.md +++ b/IT/Scripting.md @@ -10,4 +10,11 @@ echo "Hello, World!" `#!/bin/sh` means that this script can be executed by the binary located at `/bin/sh`, and so the reader knows this is a `sh`(ell) script. ## Variables -In bash, variable assignment is done with the `=` operator. Variables are conventionally named with `SCREAMING_SNAKE_CASE`, and can be accessed by prefixing the variable name with a dollar sign () \ No newline at end of file +In bash, variable assignment is done with the `=` operator. Variables are conventionally named with `SCREAMING_SNAKE_CASE`, and can be accessed by prefixing the variable name with a dollar sign (`$`): +```bash +#!/bin/bash +# There may not be any spaces +# Assignment is done with the equal sign (=) operator: +MY_VARIABLE=" + +``` \ No newline at end of file