diff options
author | EuAndreh <eu@euandre.org> | 2024-11-18 08:21:58 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-11-18 08:44:57 -0300 |
commit | 960e4410f76801356ebd42801c914b2910a302a7 (patch) | |
tree | 615d379416f72956d0c1666c63ce062859041fbe /src/content/tils/2021/01/17 | |
parent | Remove jekyll infrastructure setup (diff) | |
download | euandre.org-960e4410f76801356ebd42801c914b2910a302a7.tar.gz euandre.org-960e4410f76801356ebd42801c914b2910a302a7.tar.xz |
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. |