OSSubprocess
                                
                                
                                
                                    OSSubprocess copied to clipboard
                            
                            
                            
                        Forking Operating System Processes from within Pharo Language
.Add option to automatically close all file descriptors but standard streams in the child. OSProcess does this too but it relies on a non portable solution. We should find a...
Get more info about the process running the VM (OSSVMProcess) .. see OSProcess method `refreshFromProcessAccessor`
Right now, half of the methods that use `childProcessList` do use the `accessProtect` and the other half do not...I check really check which ones should need the protect and which...
From Max Leske The use case I have in mind is again ImageMagick. Imagine I want to kill all processes that invoked ImageMagick, and those invocations are strewn across the...
For this we need first #4 Example from Max Leske: One thing I need is a facility to kill all child processes. When I say “child processes” these may be...
# addAllEnvVariablesFromParentWithoutOverride method name seems a little long when it might be #environmentInheritAll. Maybe for flexibility also #environmentInherit: #( 'HOME' 'EDITOR' ) and # environmentRemove: #( 'HURTFUL' ).
I should add some paragraph explaining about them
During loading from a baseline with the following spec: ```smalltalk spec baseline: 'OSSubprocess' with: [ spec repository: 'github://marianopeck/OSSubprocess:master/repository' ]; ```