int system(const char *)
How can I send output of this command (lets say the command is "pwd") to a char*? Its returning an int but I want the results of the command to be sent to a char*.
int system(const char *)
How can I send output of this command (lets say the command is "pwd") to a char*? Its returning an int but I want the results of the command to be sent to a char*.
system("pwd > file");
system() uses "/bin/sh -c" under Linux so it can do anything a shell command line can do.
You can pipe the output of the command directly to a file by using "pwd > tempfile" as command.
Another way is to use
popen
That will give you a file pointer where you can read the output from.