Bash Command Substitution #########################
There are two ways:
.. code-block:: bash
myvar=cat /etc/motd
cat /etc/motd
myvar=$(cat /etc/motd)
Choose either then then try this:
echo $myvar