Qual é o atalho de teclado oposto a Ctrl + k?

12

Ctrl + K apaga o resto da linha em uma linha de comando do UNIX. Como excluo todo o texto antes do cursor?

    
por syntagma 07.09.2014 / 18:25

1 resposta

15

Use Ctrl + u :

Da documentação de bash , Killing And Yanking :

unix-line-discard (C-u)

Kill backward from the cursor to the beginning of the current line.

O comportamento

Ctrl + u não é controlado apenas pelos shells que têm seu próprio editor de linha como bash , zsh , tcsh , sh -o emacs , mas também pela disciplina de linha do driver de terminal quando no modo canônico (como em cat ou implementações básicas de sh / ksh quando nenhum editor de linhas está ativado). Assim funciona em todos os lugares.

Você pode verificar a disciplina de linha do driver do terminal usando stty -a (ou stty -everything no sistema BSD):

$ stty -a
speed 38400 baud; rows 24; columns 80; line = 0;
intr = ^C; quit = ^\; erase = ^?; kill = ^U; eof = ^D; eol = M-^?; eol2 = M-^?;
swtch = M-^?; 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
    
por 07.09.2014 / 18:41