math.eval code example
Example 1: eval
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
Example 2: convert string of expression in to expression in javascript
eval(string)