Is it possible to execute multiple commands stored in a variable? Singe command works fine
variable="echo HELLO"
$variable
HELLO
I would like to have something like this
variable="echo HELLO; echo WORLD"
HELLO
WORLD
not
HELLO; echo WORLD