linux eval befehl

C++
Just use eval command for running string output. As for example:
eval $cmd   #execute command included in string value of $cmd variable
Or for a more sophisticated use run commands stored in lines of a file:
cat commands_file.txt | while read line; do eval $line; done
Source

Also in C++: