Ctrl+Sを無効化する
以下を .bashrc に追加する。
code:.bashrc
if -t 0 ; then
stty stop undef
stty start undef
fi
[[ -t 0 ]] は標準入力オープン時に真となる。
参考
Linuxの「端末」で最もウザいキーバインド「Ctrl+S」を無効化する方法 https://linuxfan.info/disable-ctrl-s