I'm calling system() to trigger a command. I can see the output of the command in the Xcode console – but I don't know how to capture it in a string.
I tried setting a string to the system() call itself, but the string was set to 0.
This is the code I wrote:
string node = "/usr/local/bin/node ~/Desktop/chromix-master/script/chromix.js ";
string commandStr = node + "url";
char command[1024];
strcpy(command,commandStr.c_str());
system(command);
Specifically, I'm trying to get the URL of the currently focused tab in chrome using smblott's Chromix utility.