Calling Platform Commands

system(platform_command)
e.g. (Unix):
> system("ls -l")
...
e.g.(Windows NT/95):
> system("notepad")

Back