```sh
eval command arguments
```
The eval command enables to run dynamically created commands.<br>
The command and arguments passed can be variables in the form of ${name}.
Any number of arguments which will construct a line to evaluate and execute.
The result of the evaluated line.
```sh
command = set echo
eval ${command} hello world
```