A text box will be used to capture the command. I\'ve been told that I have to use the exec() function to execute UNIX shell commands.
exec()
Something like th
As long as it is one line you can just echo the return value of exec.
echo
exec
Like so:
echo exec('ls');
But it only displays the first line.