We are trying to figure out how we would store the name of a…

We are trying to figure out how we would store the name of a shell command in a variable named RUNME, then use this same variable to execute the command it holds in our Bash shell. For instance, we would store inside RUNME the date -R command, then use RUNME to get the shell to execute it later.The first part is easy, we simply do the following; export RUNME=”date -R” Select all of the solutions below which would allow us to execute the value held by RUNME