Executes a command.
This function executes a command in a shell and returns the last line of the output. Instead of returning the output of the command in a variable, it is sent directly to the browser. The optional return_value holds the return value of the command.
<pre>
<?php
system("mount", $ret);
?>
</pre> /dev/sda1 on / type ext3 (rw)
none on /proc type proc (rw)
usbdevfs on /proc/bus/usb type usbdevfs (rw)
none on /dev/pts type devpts (rw,gid=5,mode=620)
none on /dev/shm type tmpfs (rw) system() and mount are used to print the mounted filesystems.