execute a bash command as a string code example
Example: command to run string bash
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