Disable stty start/stop.

This commit is contained in:
David Tomaschik
2014-05-26 13:21:14 -07:00
parent 3839ac9e2f
commit f235fb2660

View File

@@ -27,6 +27,10 @@ if [ -d $HOME/.gce/google-cloud-sdk/bin ] ; then
export PATH="$PATH:$HOME/.gce/google-cloud-sdk/bin" export PATH="$PATH:$HOME/.gce/google-cloud-sdk/bin"
fi fi
# Disable stty ctrl-s/ctrl-q behavior
stty stop undef
stty start undef
# Setup GPG Agent # Setup GPG Agent
GPG_AGENT_INFO_PATH=$HOME/.gnupg/gpg-agent-info-`hostname` GPG_AGENT_INFO_PATH=$HOME/.gnupg/gpg-agent-info-`hostname`
if test -f $GPG_AGENT_INFO_PATH && kill -0 `cut -d: -f 2 $GPG_AGENT_INFO_PATH` 2>/dev/null ; then if test -f $GPG_AGENT_INFO_PATH && kill -0 `cut -d: -f 2 $GPG_AGENT_INFO_PATH` 2>/dev/null ; then