How do i execute a command line program and get the output in to zope?&nbsp; I seem to have permission issues with the following code which I think should work otherwise.<br><br>thanks,<br><br>import os, sys<br><br>print os.execv
(&#39;/bin/echo&#39;, [&#39;foo&#39;, &#39;bar&#39;])<br>return printed<br><br>