{ claus.conrad }

Bash

https://www.gnu.org/software/bash/

  • An sh-compatible [shell](…/UNIX shells/) that incorporates useful features from the Korn shell (ksh) and the C shell (csh)

Resources

Shortcuts

ShortcutFunction
Ctrl+LClear screen
Ctrl+RStart or continue a search through

Scripting

![[How To Automate Your Dev Setup#^e00c9b]]

  • if ! command >/dev/null 2>&1; then ... fi:
    • If command (run without output) returns an exit code greater than 0, then …

if statements

![[Bash Scripting for Beginners - Complete Guide to Getting Started - If Statements (Part 5)#Notes]]