如何在execl函数中使用cd和vi

时间:2017-09-22 18:17:44

标签: c linux shell command execl

我想使用execl函数从我的c程序中调用命令cd和vi,但它不起作用。 这就是我为rm和ls所做的:

execl("/bin/ls", "ls", NULL);
execl("/bin/rm", "rm", args[1], NULL); //args is the array containing the arguments of the command

适用于lsrm,但当我尝试使用vicd执行相同操作时,它不起作用。

0 个答案:

没有答案