Skip to content

Instantly share code, notes, and snippets.

@emilsoman
Created March 8, 2016 11:47
Show Gist options
  • Save emilsoman/71f1f5a5c2622605fff9 to your computer and use it in GitHub Desktop.
Save emilsoman/71f1f5a5c2622605fff9 to your computer and use it in GitHub Desktop.
When exit status of zeus is 2, fix tty and retry.
zeus () {
ARGS=$@;
command zeus "$@";
ZE_EC=$?;
if [ $ZE_EC = 2 ]; then
stty sane;
zeus ${=ARGS};
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment