diff options
Diffstat (limited to '')
-rw-r--r-- | src/content/tils/2021/01/17/posix-shebang.adoc (renamed from _tils/2021-01-17-posix-sh-and-shebangs.md) | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/_tils/2021-01-17-posix-sh-and-shebangs.md b/src/content/tils/2021/01/17/posix-shebang.adoc index 938d1bd..5f5b897 100644 --- a/_tils/2021-01-17-posix-sh-and-shebangs.md +++ b/src/content/tils/2021/01/17/posix-shebang.adoc @@ -1,6 +1,4 @@ ---- - -title: POSIX sh and shebangs += POSIX sh and shebangs date: 2021-01-17 @@ -49,7 +47,7 @@ set -eu ``` 1. when running via `./script.sh`, if the system has an executable at `/bin/sh`, it will be used to run the script; -1. when running via `sh script.sh`, the sh options aren't ignored as previously. +2. when running via `sh script.sh`, the sh options aren't ignored as previously. TIL. |