Show Menu
Cheatography

Bash Scripting Cheat Sheet (DRAFT) by [deleted]

This is a draft cheat sheet. It is a work in progress and is not finished yet.

Standard Stard

#!/bin/bash

Unofficial strict mode

#!/bin/bash
set -euo pipefail
IFS=$'\n\t'