The UNIX and Linux Forums
>
Top Forums
>
High Level Programming
executing a program within a program
User Name
Remember Me?
Password
Google UNIX.COM
Forums
Directory
Register
Forum Rules
FAQ
Contribute
Members List
Search
Today's Posts
Mark Forums Read
Thread
:
executing a program within a program
View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
#
4
(
permalink
)
02-06-2002
bangieff
Registered User
Join Date: Feb 2002
Posts: 1
sample source
char **arguments;
int result,status;
....
if (!fork()) {
execvp(arguments[0],arguments);
exit(-1);
} else {
result=wait(&status);
...
}
__________________
shame on me 8-)
bangieff
View Public Profile
Find all posts by bangieff