Execute string commandStr as operating system command.
returnedBool = system(commandStr)
returnedBool - type: bool
commandStr - type: str
True if successful execution of command.
An "escape to the shell" from inside NLP++.
@CODE
system("dir > c:\\listing.txt"); # List contents of current working directory.
@@CODE