|
|
|
|
|
by jude-
4262 days ago
|
|
The other key limitation of PowerShell is that its commands all run in the same process (e.g. PowerShell is akin to a REPL). By contrast, UNIX programs each run in their own process, giving the programmer a much greater degree of freedom in the design and implementation of each program. You can do IPC with PowerShell [1], but it's nowhere near as simple as UNIX-style piping. [1] http://coders-corner.net/2014/05/11/inter-process-communicat... |
|