mirror of
https://github.com/m-lamonaca/dev-notes.git
synced 2025-04-05 18:36:41 +00:00
feat(bash): add script hardening notes
This commit is contained in:
parent
9eb30ca5c3
commit
503556fb96
1 changed files with 13 additions and 0 deletions
|
@ -258,3 +258,16 @@ for var in iterable ; do
|
|||
# command here
|
||||
done
|
||||
```
|
||||
|
||||
## Script Hardening
|
||||
|
||||
```sh
|
||||
set -o errexit # exit on error
|
||||
set -o nounset # fail on unset variable (bypass with ${VAR:-})
|
||||
set -o pipefail # file entire pipeline if one step fails
|
||||
|
||||
# hook to enable tracing
|
||||
if [[ "${TRACE-0}" == "1" ]]; then
|
||||
set -o xtrace
|
||||
fi
|
||||
```
|
||||
|
|
Loading…
Add table
Reference in a new issue