Simply say the Popen () function
function definition
#include <stdio.h>* Popen (constcharconstchar *type); int pclose (FILE *stream);
function Description
The Popen () function creates a child process by creating a pipe, calling fork (), and executes a shell to run the command to open a process. This pipe must be closed by the Pclose () function instead of the fclose () function. The Pclose () function closes the standard I/O stream, waits for the command execution to end, and then returns the Shell's terminating state. If the shell cannot be executed, the terminating state returned by Pclose () is the same as the shell has executed exit.
The type parameter can only be read or write, and the resulting return value (standard I/O stream) also has a read-only or write-only type corresponding to type. If type is "R" then the file pointer is connected to the standard output of command, and if type is "W" then the file pointer is connected to the standard input of command.
The command parameter is a pointer to a null-terminated shell command string. This line of command will be passed to bin/sh and use the-c flag and the shell will execute the command.
The return value of Popen () is a standard I/O stream that must be terminated by Pclose. As mentioned earlier, this flow is unidirectional (can only be used for reading or writing). Writing to this stream is equivalent to writing the standard input to the command, the standard output of the command is the same as the process of calling Popen (), and, conversely, reading the data from the stream is equivalent to reading the standard output of the command, the standard input of the command and the process of calling Popen ().
return value
If the call to fork () or pipe () fails, or if memory cannot be allocated, it returns NULL, otherwise the standard I/O stream is returned. Popen () did not set errno value for memory allocation failure. If an error occurs when the fork () or pipe () is called, errno is set to the appropriate error type. If the type parameter is not valid, errno will return einval.
Attach an example:
//Execute Shell command//executes a shell command, the output is stored line by row in Resvec, and the number of rows is returnedint32_t Myexec (Const Char*cmd, vector<string> &Resvec) {resvec.clear (); FILE*pp = Popen (cmd,"R"); Build Pipelinesif(!PP) { return-1; }Chartmp[1024x768]; Set an appropriate length to store each line of output while(Fgets (TMP,sizeof(TMP), pp)! =NULL) { if(Tmp[strlen (TMP)-1] =='\ n') {Tmp[strlen (TMP)-1] =' /';//Remove line break}Resvec.push_back (TMP); } pclose (PP); Close Pipereturnresvec.size ();}
Using Popen () to execute shell commands under Linux