diff --git a/IT/Scripting.md b/IT/Scripting.md index 5598dfa..0ddc012 100644 --- a/IT/Scripting.md +++ b/IT/Scripting.md @@ -6,4 +6,5 @@ There are various shells with their own language syntax (`sh`, `bash`, `fish`, e ```sh #!/bin/sh echo "Hello, World!" -``` \ No newline at end of file +``` +`#!/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. \ No newline at end of file