Skip to content

Instantly share code, notes, and snippets.

@ericwoodruff
Created August 25, 2013 19:40
Show Gist options
  • Save ericwoodruff/6335818 to your computer and use it in GitHub Desktop.
Save ericwoodruff/6335818 to your computer and use it in GitHub Desktop.
forever doless
function forever () { while [ TRUE ]; do "$@"; done}
function doless () {
"$@" 2>&1 | tee /dev/stderr | less —buffers=-1 —chop-long-lines —shift 16 —RAW-CONTROL-CHARS —quit-on-intr +G
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment