DEV Community

Discussion on: My Favorite Linux Tools

 
anpos231 profile image
anpos231

For me killall proved useful when working with PHP. For example when there is this one rogue script that did not finish like it should. killall -9 php is not a problem because apache will spawn another one as soon as new request is made, but currently made request would be interrupted, so I only use in dev env.