我想在我创建的shell上添加自动完成功能。我不能把整个代码放进去,但我可以告诉你我的shell工作正常! 所以我尝试使用readline函数实现自动完成,但结果不是很好(参见我试过的评论中的代码):自动完成工作但问题是: 我需要按两次回车才能立即执行命令。 2.我需要输入两次命令(如“ls”)才能执行!你能帮我解决这个问题吗?谢谢你:))
#include <readline/readline.h>
#include <readline/history.h>
#include <stdlib.h>
#include <stdio.h>
#include "includes/ft_sh1.h"
int main(int ac, char **av, char **envp)
{
char *line;
t_env *e = NULL;
char *add;
if (!(e = (t_env *)malloc(sizeof(t_env))))
return (0);
e->envp = env_cpy(envp, 0, 0);
init_env(e);
while (1)
{
--> My question is only about this part below <--
ft_printf("shell$> ");
// add = readline( "shell ");
// add_history(add);
// printf("%s", add);
--> My question is only about this part above <--
get_next_line(0, &line);
get_pwd_env(e);
e->cmd = get_cmd(e, line);
if (ft_strcmp(line, "exit") == 0)
exit(0);
else if (ft_strncmp(e->cmd[0], "cd", 2) == 0)
cd_cmd(e);
else
ft_execute(av, line, e);
}
}
答案 0 :(得分:0)
如果您只是取消注释相关代码的部分,您仍然可以进行调用
get_next_line(0, &line);
在你的程序中,所以难怪你需要输入两个命令行。