From 756c89cfd7db6e08ab3245a0b74a38020ac0a63a Mon Sep 17 00:00:00 2001 From: zleyyij Date: Thu, 30 May 2024 17:43:28 -0600 Subject: [PATCH] vault backup: 2024-05-30 17:43:28 --- IT/Scripting.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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