I'm wondering if there is any way to inject html element into a job output
I have a simple bash script with the following content
[root@s001tst-gisas1 .scripts]# cat color.sh
echo " Non Escaped"
echo "<span style=\"color:blue;\">[ok]</span>"
echo " Escaped "
echo "\<span style=\"color:blue;\"\>[ok]\</span\>"
[root@s001tst-gisas1 .scripts]# ./color.sh
Non Escaped
<span style="color:blue;">[ok]</span>
Escaped
\\\<span style="color:blue;"\\>\[ok\]\\\</span\\>
So I execute that script as the OS Command job in the Enterpise Manager and get the output like the following

So OEM treated tags as the text
Reviewing the OEM page source I see that all "<" and ">" characters were substituted by both < and >
style="white-space: pre; cursor: text;" class="x25"><span style="color:blue;">[ok]</span></span></span></td>
Is there any way to force them to be treated as html tags?