All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #15
16 lines
257 B
Markdown
16 lines
257 B
Markdown
---
|
|
title: "Bash life"
|
|
summary: "Bourne Again SHell"
|
|
author:
|
|
- JF
|
|
date: 20-05-2025
|
|
---
|
|
|
|
[Bash cheatsheet](https://devhints.io/bash)
|
|
|
|
[Bash strict mode](http://redsymbol.net/articles/unofficial-bash-strict-mode/)
|
|
```bash
|
|
set -euo pipefail
|
|
IFS=$'\n\t'
|
|
```
|