Greg Wooledge
2024-07-10 14:00:01 UTC
~$ stty start undef
So, is there a way to permanently set "start" as "undef"? Maybe under /etc/?
Should I put this command in .bashrc?
You could -- but if you do so, you should definitely surround it withSo, is there a way to permanently set "start" as "undef"? Maybe under /etc/?
Should I put this command in .bashrc?
a check for stdin being a terminal (test -t 0 or equivalent).
The proper way to disable XOFF/XON flow control, though, is to use
"stty -ixon". The same disclaimer applies: only do it when you've
verified that stdin is a terminal.
test -t 0 && stty -ixon
That should be safe to add to your .bashrc.