?? settty.c
字號:
#include "apue.h"#include <termios.h>intmain(void){ struct termios term; long vdisable; if (isatty(STDIN_FILENO) == 0) err_quit("standard input is not a terminal device"); if ((vdisable = fpathconf(STDIN_FILENO, _PC_VDISABLE)) < 0) err_quit("fpathconf error or _POSIX_VDISABLE not in effect"); if (tcgetattr(STDIN_FILENO, &term) < 0) /* fetch tty state */ err_sys("tcgetattr error"); term.c_cc[VINTR] = vdisable; /* disable INTR character */ term.c_cc[VEOF] = 2; /* EOF is Control-B */ if (tcsetattr(STDIN_FILENO, TCSAFLUSH, &term) < 0) err_sys("tcsetattr error"); exit(0);}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -