[#subprocess-Popen-2constructor-06] = xref:subprocess.adoc[subprocess]::xref:subprocess/Popen.adoc[Popen]::Popen :relfileprefix: ../../ :mrdocs: Launches a child process from a command given as an initializer list, plus options. == Synopsis Declared in `<util/subprocess.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<typename... Args> Popen( std::initializer_list<char const*> cmd_args, Args&&... args); ---- == Parameters [cols="1,4"] |=== | Name| Description | *cmd_args* | Command and its arguments, the first element being the program to run. | *args* | Option objects (such as input, output, error, or executable) configuring the launch. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#