実行stty -a
して、端末の設定を確認してください。私の疑いは、あなたのicrnl
設定が設定されておらず-icrnl
、通常の設定であるオンの代わりに(マイナス記号はオフになっていることを意味する)と表示されることです。ログイン時の端末のセットアップ方法は次のとおりです。
$ stty -a
speed 38400 baud; rows 45; columns 80; line = 0;
intr = ^C; quit = ^\; erase = ^?; kill = ^U; eof = ^D; eol = <undef>;
eol2 = <undef>; swtch = <undef>; start = ^Q; stop = ^S; susp = ^Z; rprnt = ^R;
werase = ^W; lnext = ^V; flush = ^O; min = 1; time = 0;
-parenb -parodd cs8 -hupcl -cstopb cread -clocal -crtscts
-ignbrk -brkint -ignpar -parmrk -inpck -istrip -inlcr -igncr icrnl -ixon -ixoff
-iuclc -ixany -imaxbel iutf8
opost -olcuc -ocrnl onlcr -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0
isig icanon iexten echo echoe echok -echonl -noflsh -xcase -tostop -echoprt
echoctl echoke
また、行末に問題はありません。リターン(^ M)またはエンター(^ J)のどちらでも入力行が終了します。しかし、icrnl
オフにすると、プログラムに話しかけるたびに^ Mコードが突然表示され、Enterキーを押します。
$ stty -icrnl
$ read line
Line of text^M^M^M^M
$ stty -a
speed 38400 baud; rows 45; columns 80; line = 0;
intr = ^C; quit = ^\; erase = ^?; kill = ^U; eof = ^D; eol = <undef>;
eol2 = <undef>; swtch = <undef>; start = ^Q; stop = ^S; susp = ^Z; rprnt = ^R;
werase = ^W; lnext = ^V; flush = ^O; min = 1; time = 0;
-parenb -parodd cs8 -hupcl -cstopb cread -clocal -crtscts
-ignbrk -brkint -ignpar -parmrk -inpck -istrip -inlcr -igncr -icrnl -ixon -ixoff
-iuclc -ixany -imaxbel iutf8
opost -olcuc -ocrnl onlcr -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0
isig icanon iexten echo echoe echok -echonl -noflsh -xcase -tostop -echoprt
echoctl echoke
このコードicrnl
は「キャリッジリターンを改行に戻す」ことを意味し、Unixが実際に^ Jを必要としているときに^ Mを入力している可能性がある実行中のプログラムから隠します。以前のキーボードには個別のReturnキーとEnterキーがありました(通常、Returnはフォームを進めてEnterキーを送信していました)が、今日では一般的に行末キーが1つしかないため、このターミナル設定は2つの意味を組み合わせるのに役立ちます。
にstty icrnl
コマンドを追加する.profile
か.bashrc
、これが実際に問題の設定であることがわかった場合。