如何在文本文件中保存readline历史记录并在之后调用它

时间:2011-08-31 23:11:06

标签: c history readline

是否可以在文本文件中保存读取历史记录并在重新打开程序后获取历史记录...

char *line, *expansion;
int result;

stifle_history(7);

while ((line = readline(" $ ")) != NULL) {  

        result = history_expand(line, &expansion);

        rl_bind_key('\t',rl_complete);

        if (result)
                fprintf(stderr, "%s\n", expansion);

        if (result < 0 || result == 2) {
                free(expansion);
                continue;
        }

        strncpy(line, expansion, sizeof (line) - 1);
        free(expansion);
        read_history("history_file");
        write_history("history_file");

        register HIST_ENTRY **the_list;
        register int i;

        if (the_list)
                for (i = 0; the_list[i]; i++)
                        printf("%d: %s\n", i + history_base, the_list[i]->line);

        if (strlen(line) > 0) 
                add_history(line);

我改进了我的代码。请显示正确的方法,以便我可以修复我的代码以保存历史记录,然后在文本文件中检索它。

1 个答案:

答案 0 :(得分:4)

根据the manual,您要查看write_historyread_history函数。