ChinaUnix.net
相关文章推荐:

readline library

请教一个问题: 我在调用readline库中调用readline函数,如果用户在等待输入的过程中按下Ctrl+b,系统可以接受到此按键的回调函数,但是回调函数执行完成之后,不知道如何退出readline过程(除非用户需要再次按下Entry键) 请大侠给予帮助,多谢!

by godguy - C/C++ - 2007-01-24 20:30:06 阅读(1362) 回复(1)

相关讨论

[ Top ] [ Contents ] [Index] [ ? ] GNU readline library This document describes the end user interface of the GNU readline library, a utility which aids in the consistency of user interface across discrete programs which provide a command line interface. 1. Command Line Editing GNU readline User's Manual. A. Copying This Manual [ [ > ] [ [ Up ] [ >> ] [ Top ] [ Co...

by web_surf - Linux文档专区 - 2006-12-06 12:54:25 阅读(504) 回复(0)

我安装postgresql,在运行./configure时,出现 configure: error: readline library not found, 请问如何安装?

by zb_jiang - Linux论坛 - 2006-05-30 08:09:05 阅读(837) 回复(2)

我安装postgresql,在运行./configure时,出现 configure: error: readline library not found, 请问如何安装?

by zb_jiang - Linux系统管理 - 2006-05-30 08:09:05 阅读(1533) 回复(2)

整了一上午一直报错,还以为是libreadline.so有问题呢...结果发现是没有连接libncurse库.....ncurse很久很久玩过了^_^.不废话了,直接上代码了.... #include stdio.h> #include sys/types.h> #include sys/file.h> #include sys/stat.h> #include sys/errno.h> #include readline/readline.h> #include readline/history.h> extern char *getwd (); extern char *xmalloc (); /* The names of functions that actually do the...

by ubuntuer - Linux文档专区 - 2009-03-24 16:47:14 阅读(1026) 回复(0)

configure: error: readline library not found If you have readline already installed, see config.log for details on the failure. It is possible the compiler isn't looking in the proper directory. Use --without-readline to disable readline support. 怎么办 谢谢

by jszhuzi - PostgreSQL - 2007-03-17 12:37:26 阅读(6675) 回复(1)

或许很多人已经知道 readline,但是总有人不知道。readline 从字面上来理解,就是从“行”上面读取。实际上就是一个行编辑库,bash 在用,mysql 也在用,mutt 也在用。 通过 readline,可以方便的在命令行上面移动,增删,复制,粘贴,搜索。比如: ctrl+r 可以搜索历史命令,很常用的一个ctrl+a 到行首ctrl+e 到行尾ctrl+u 删除到行首ctrl+k 删除到行尾ctrl+l 类似 clear 命令效果ctrl+y 粘贴 本文来自ChinaUnix博客,...

by ubuntuer - Linux文档专区 - 2009-04-27 15:51:27 阅读(819) 回复(0)

1、如何得知系統安裝了哪些 library ?! 2、如何得知所安裝的 library 的路徑?! 3、 [/etc]# find / -name ld.so.conf find: cannot open /: Stale NFS file handle 這是什麼問題?!

by cmc - Solaris - 2003-03-14 09:12:43 阅读(907) 回复(3)

1、如何得知系統安裝了哪些 library ?! 2、如何得知所安裝的 library 的路徑?! 3、 [/etc]# find / -name ld.so.conf find: cannot open /: Stale NFS file handle 這是什麼問題?!

by cmc - Solaris - 2003-03-14 09:12:43 阅读(2517) 回复(1)

readline 是一个强大的库,只要使用了它的程序,都可以用同一个配置文件配置,而且用同样的方法操作命令行,让你可以方便的编辑命令行。 使用 readline 的程序现在主要有 Bash, GDB,ftp 等。readline 付予这些程序强大的 Emacs 似的命令行编辑方式,你可以随意绑定你的键盘。 所有使用readline的程序,都使用一个配置文件来决定它的行为和键绑定。这个文件一般是 INPUTRC 环境变量确定的。如果这个环境变量没有值,那么缺省使用...

by garyfujian - Linux文档专区 - 2010-01-28 10:59:41 阅读(1740) 回复(0)