sortix-mirror/utils/help.cpp

17 lines
369 B
C++
Raw Normal View History

2011-08-27 21:26:11 +00:00
#include <stdio.h>
#include <errno.h>
#include <error.h>
#include <unistd.h>
2011-08-27 21:26:11 +00:00
int main(int argc, char* argv[])
{
printf("Please enter the name of one of the following programs:\n");
const char* programname = "ls";
const char* newargv[] = { programname, "/bin", NULL };
execv(programname, (char* const*) newargv);
error(1, errno, "%s", programname);
2011-08-27 21:26:11 +00:00
return 1;
}