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