• stty设置终端参数


    stty命令可以用来显示和设置终端参数。

    -a 参数用来显示终端设置。

    root@jumpstart:/ #>stty -a
    speed 38400 baud;
    rows = 24; columns = 80; ypixels = 0; xpixels = 0;
    csdata ?
    eucw 1:0:0:0, scrw 1:0:0:0
    intr = ^c; quit = ^\; erase = ^?; kill = ^u;
    eof = ^d; eol = <undef>; eol2 = <undef>; swtch = <undef>;
    start = ^q; stop = ^s; susp = ^z; dsusp = ^y;
    rprnt = ^r; flush = ^o; werase = ^w; lnext = ^v;
    -parenb -parodd cs8 -cstopb -hupcl cread -clocal -loblk -crtscts -crtsxoff -parext
    -ignbrk brkint -ignpar -parmrk -inpck -istrip -inlcr -igncr icrnl -iuclc
    ixon -ixany -ixoff imaxbel
    isig icanon -xcase echo echoe echok -echonl -noflsh
    -tostop echoctl -echoprt echoke -defecho -flusho -pendin iexten
    opost -olcuc onlcr -ocrnl -onocr -onlret -ofill -ofdel tab3

    其中:

    intr 表示向当前正在运行的程序发送中断信号(ctrl+c)

    quit 表示向当前正在运行的程序发送quit信号(ctrl+\)

    erase 表示向后删除一个字符

    kill 表示删除命令行的所有字符(ctrl+u)

    eof 表示输入结束(ctrl+d)

    start 表示重新开始屏幕输出(ctrl+q)

    stop 表示停止向屏幕输出(ctrl+s)

    susp 表示向程序发送terminal stop信号,暂时停止程序(ctrl+z)

    werase 表示向后删除一个word (ctrl+w)

    上述功能键设置可以通过stty命令修改。例如修改字符删除功能键方法如下。

    当前设置:

    root@jumpstart:/ #>stty -a | grep erase
    intr = ^c; quit = ^\; erase = ^e; kill = ^u;
    rprnt = ^r; flush = ^o; werase = ^w; lnext = ^v;

    如果想把字符删除功能键定义为backspace键,则需要先知道backspace键是用什么字符表示的。方法是命令行下直接点击backspace键,然后点enter,如下:

    root@jumpstart:/ #>^?
    -bash:: command not found

    上面说明^?表示backspace。

    然后用stty命令将erase设置为backspace.

    root@jumpstart:/ #>stty erase \^?

    这样设置只在当前shell有效,如果需要永久生效,可以把stty erase ^?加到用户的.profile文件中。

  • 相关阅读:
    链接
    Java垃圾收集算法1
    Java基础知识常见面试题汇总第一篇
    Java基础知识
    线程间通信
    System.Span, System.Memory,还有System.IO.Pipelines
    微服务构件
    定位恶意软件
    Spring MVC-处理程序映射(Handler Mapping)-简单的Url处理程序映射(Simple Url Handler Mapping)示例(转载实践)
    Spring MVC-处理程序映射(Handler Mapping)-控制器类名称处理程序映射(Controller Class Name Handler Mapping)示例(转载实践)
  • 原文地址:https://www.cnblogs.com/cqubityj/p/2341341.html
Copyright © 2020-2023  润新知