Each instance would be trying to process the same files.
Oh. I never got the impression that the OP wanted this. I fail to see why that's a benefit.
Which would mean lots of "file in use" errors and/or duplicated results.
Windows doesn't allow two processes to open the same file? That sounds like an easy DoS.
The multiple instances would be trying to redirect their output to the same file. Even if you use append (>>), Windows won't let you do that. Not sure if *nix will?
Unix allows multiple processes to write to the same file. And if the file is opened in append mode, all write()s will go to the end of the file.
| [reply] [d/l] |
Oh. I never got the impression that the OP wanted this. I fail to see why that's a benefit.
If you start two concurrent instances of grep with a wildcard filespec, (win or *nix), then both instances will expand that wildcard to the same list.
So then the problem becomes, how do you distribute the file list across multiple grep instances?
Windows doesn't allow two processes to open the same file?
It does, but not by default. And the permissions required are not available from perl.
Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.
| [reply] |
| [reply] |