2022-02-01344 chars
stty -ixon
Weird knowledge increases as I keep using Linux.
man stty
to find out what it does.
Wtih stty ixon
, the START/STOP output control gets enabled, the terminal pauses when pressing ctrl+s, and resumes when pressing ctrl+q.
With stty -ixon
, the START/STOP output control gets disabled.