stty命令使用一例

stty命令使用一例

可以通过stty -a命令来查看所有的终端设置。

[nm_appg~]$stty -a
speed 9600 baud; line = 0;
rows = 41; columns = 132
min = 1; time = 1;
intr = ^C; quit = ^/; erase = ^H; kill = ^U
eof = ^D; eol = ^@; eol2 = <undef>; swtch = <undef>
stop = ^S; start = ^Q; susp = ^Z; dsusp = <undef>
werase = <undef>; lnext = <undef>
parenb -parodd cs7 -cstopb hupcl -cread -clocal -loblk -crts
-ignbrk brkint ignpar -parmrk -inpck istrip -inlcr -igncr icrnl -iuclc
ixon -ixany ixoff -imaxbel -rtsxoff -ctsxon -ienqak
isig icanon -iexten -xcase echo echoe echok -echonl -noflsh
-echoctl -echoprt -echoke -flusho -pendin
opost -olcuc onlcr -ocrnl -onocr -onlret -ofill -ofdel -tostop
其中:
eof : 输入结束
erase : 向后删除字符,
intr : 中断当前程序
kill : 删除整条命令
quit :退出当前程序
start : 启动屏幕输出
stop :停止屏幕输出;
susp : 挂起当前程序。  

修改某个命令的值的格式如下:

[nm_appg~]$stty susp ^Z  这样就可以将susp的操作指令修改为Ctrl+z

你可能感兴趣的:(stty命令使用一例)