Tente correr stty -a
para ver as configurações do seu terminal. Minha suspeita é que sua icrnl
configuração não esteja definida e será mostrada como -icrnl
(o sinal de menos significa que está desativada) em vez de ter a configuração usual de estar ativada. Aqui está como meu terminal é normalmente configurado quando eu faço login:
$ 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
E eu não tenho nenhum problema com terminações de linha: return (^ M) ou enter (^ J) terminarão as linhas de entrada. Mas se eu icrnl
desligar, os códigos ^ M aparecerão repentinamente toda vez que estou falando com um programa e pressione 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
O código icrnl
significa "transformar retornos de carro em novas linhas" e oculta o programa em execução que você pode estar digitando ^ M quando o Unix realmente deseja ^ J. Os teclados antigos costumavam ter uma tecla Return e Enter separada (onde Return normalmente o avançava por meio de um formulário e a Enter o enviava), mas hoje geralmente temos apenas uma tecla de final de linha e, portanto, essa configuração do terminal ajuda a combinar os dois significados.
Adicione o stty icrnl
comando ao seu .profile
ou .bashrc
se você achar que essa é realmente a configuração do problema.