Sync Mon Nov 6 21:00:09 UTC 2023

This commit is contained in:
bouncepaw
2023-11-06 21:00:09 +00:00
parent c774ea6bd8
commit b51afd2174
4 changed files with 24 additions and 8 deletions
-4
View File
@@ -1,4 +0,0 @@
= 771
https://meiert.com/en/blog/optional-html/#toc-quotes
What can be left out.
+12
View File
@@ -0,0 +1,12 @@
= 835
https://gist.github.com/mohanpedala/1e2ff5661761d3abd0385e8223e16425
Bash strict mode.
```sh
set -euxo pipefail
```
The -x is sometimes not needed, it prints out every input back. So, this is an option:
```
set -euo pipefail
```
@@ -1,4 +0,0 @@
= Optional HTML: Everything You Need to Know · Jens Oliver Meiert
https://meiert.com/en/blog/optional-html/#toc-quotes
What can be left out.
@@ -0,0 +1,12 @@
= set -e, -u, -o, -x pipefail explanation
https://gist.github.com/mohanpedala/1e2ff5661761d3abd0385e8223e16425
Bash strict mode.
```sh
set -euxo pipefail
```
The -x is sometimes not needed, it prints out every input back. So, this is an option:
```
set -euo pipefail
```