NAME
	system - run an external program

SYNTAX
	#include <process.h>

	void system(string cmd);

DESCRIPTION
	This function runs the external program cmd and waits until it
	is finished. Standard /bin/sh completions/redirectoins/etc. can
	be used.

SEE ALSO
	popen, exec, spawn