exe programm starten!
-
hallo!
ich will mit c++ 2 exe programme: apache_start.exe (Apache Server) und mysql_start.exe (SQL Server) starten!!!
wie mache ich das am einfachsten??
über shell execute???bye!
-
SYSTEM(3) Linux Programmer's Manual SYSTEM(3)
NAME
system - execute a shell commandSYNOPSIS
#include <stdlib.h>int system(const char *string);
DESCRIPTION
system() executes a command specified in string by calling /bin/sh -c
string, and returns after the command has been completed. During exe-
cution of the command, SIGCHLD will be blocked, and SIGINT and SIGQUIT
will be ignored.RETURN VALUE
The value returned is -1 on error (e.g. fork failed), and the return
status of the command otherwise. This latter return status is in the
format specified in wait(2). Thus, the exit code of the command will
be WEXITSTATUS(status). In case /bin/sh could not be executed, the
exit status will be that of a command that does exit(127).If the value of string is NULL, system() returns nonzero if the shell
is available, and zero if not.system() does not affect the wait status of any other children.
CONFORMING TO
ANSI C, POSIX.2, BSD 4.3