spiralofhope logo
spiralofhope logo

S
piral of Hope
Better software is possible.
Styles
Table of Contents

Programming >


My scripts are found here: https://github.com/spiralofhope/shell-random

bash, zsh and pure sh

Trapping ^c

die(){
  \echo '^c detected, dying'
  \exit 1
}
\trap die INT

Methods

Procedures/whatever they're called

method(){
  \echo 'I do this'
}
method
method

Methods with a parameter

TODO