tail -f 退出不了怎么办


请问tail -f查看文件时怎么退出这个命令? 我试了ctrl+C不行, 应该怎么退出呢? 

用 stty -a 可以看到所有与终端相关的设定。 

如果想把中断设为 Ctrl-C 的话,只需要设定 

stty intr '^C' 

就可以了。注意 ' 是单引号,^C 是两个字符 ^ 和 C。
 
[root@localhost ~]# stty -a
speed 38400 baud; rows 50; columns 132; line = 0;
intr = ^C; quit = ^\; erase = ^?; kill = ^U; eof = ^D; eol = ; eol2 = ; swtch = ; 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 -cdtrdsr
-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

你可能感兴趣的:(linux)