Can I use JSP to run OS commands ?
I have done similar thing in PHP and works fine using the shell_exec syntax.
Is it possible to do it in JSP ?
I was looking for something similar like this .
<?php
$output = shell_exec('ls -lart');
echo "<pre>$output</pre>";
?>