home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Datafile PD-CD 4
/
DATAFILE_PDCD4.iso
/
utilities
/
utilsp
/
psh
/
c
/
exec
< prev
next >
Wrap
Text File
|
1995-05-08
|
418b
|
28 lines
/* vi:tabstop=4:shiftwidth=4:smartindent
*
* exec.c - replace this shell with the named command
*
*/
#include <stdio.h>
#include <history.h>
#include <unistd.h>
#include "psh.h"
int sh_exec(int argc, char **argv)
{
if (argc > 1)
{
/* Write out the history list before execvp
*/
write_history(NULL);
execvp("*", argv);
}
else
{
fprintf(stderr, "No command to exec\n");
return 1;
}
return 0;
}