Execute the system command specified by the string C. This is
done by calling the C function system().
This also returns the system command's return value as an integer.
On most Unix systems, the lower 8 bits of this value give the process status
while the next 8 bits give the value given by the command to the C
function exit() (see the Unix manual entries for system(3) or
wait(2), for example). Thus one should normally divide the result
by 256 to get the exit value of the program on success.
See also the Pipe intrinsic function.