1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-03 15:18:01 +00:00

Add Interactively Kill A Process With fkill as a workflow til

This commit is contained in:
jbranchaud
2018-04-08 10:36:58 -05:00
parent ea5b9c1371
commit a5be18a6f1
2 changed files with 18 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
# Interactively Kill A Process With fkill
The cross-platform [`fkill`](https://github.com/sindresorhus/fkill-cli) tool
is a modern, friendly CLI for fabulously killing processes. It provides an
interactive interface for searching for the name or pid of a process that
needs killing.
Install it with yarn (or npm):
```bash
$ yarn global add fkill-cli
```
Then run it with no arguments to trigger the interactive mode.
![use fkill interactively](https://raw.githubusercontent.com/sindresorhus/fkill-cli/master/screenshot.gif)