我试过C编程,但这给出了错误" sh:1:
历史:未找到"。
我的c编程代码
int main ()
{
char command[50];
strcpy( command,"history | tail -20" );
system(command);
return(0);
}
答案 0 :(得分:0)
在bash
中,您可以访问环境变量$ HISTFILE。使用参数-ci调用shell。 -c
运行命令并-i
为shell提供包含所有可用环境变量的交互式环境。
bash -ic 'tail -20 $HISTFILE'