feather icon indicating copy to clipboard operation
feather copied to clipboard

Feature: kill a background process

Open mattjbray opened this issue 10 months ago • 1 comments

A common pattern in bash is to start a long-running process in the background, do something, then kill it:

foo &
FOO_PID=$!
# do other stuff
kill $FOO_PID

It'd be nice to have an API for this. (Currently there is no way to get the PID of a background_process.)

mattjbray avatar Apr 17 '24 14:04 mattjbray