2016年3月30日
摘要: Linux提供了一组编程接口,用来控制终端驱动程序的行为。这样我们可以更精细的来控制终端。 例如: 回显:允许控制字符的回显,例如读取密码时。 使用termios结构的密码程序 #include <stdio.h>#include <termios.h>#include <unistd.h> #de 阅读全文
posted @ 2016-03-30 17:12 邶风 阅读(986) 评论(0) 推荐(0) 编辑
摘要: Linux提供了一个特殊的设备 /dev/tty ,该设备始终是指向当前终端或者当前的登录会话。 FILE* output = fopen("/dev/tty", "w"); //向终端写入字符串 fprintf(output, "%s\n", "world"); FILE* input = fop 阅读全文
posted @ 2016-03-30 14:19 邶风 阅读(216) 评论(0) 推荐(0) 编辑