vault backup: 2024-05-30 17:45:46

This commit is contained in:
zleyyij 2024-05-30 17:45:46 -06:00
parent 756c89cfd7
commit 4b336dca70

View File

@ -7,4 +7,5 @@ There are various shells with their own language syntax (`sh`, `bash`, `fish`, e
#!/bin/sh #!/bin/sh
echo "Hello, World!" 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. `#!/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.