Skip to content

Latest commit

 

History

History
14 lines (9 loc) · 223 Bytes

2022-05-07_piping-output-creates-a-new-process.md

File metadata and controls

14 lines (9 loc) · 223 Bytes

piping output creates a new process

spawn('yes')

creates a single process you can kill, but

spawn('yes 2> /dev/null')

Creates a parent process and a subprocess, so you can't easily kill yes