2021-05-30 02:57:04 +02:00
|
|
|
# kill
|
|
|
|
Kill a process using the process id.
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
```shell
|
|
|
|
> kill <pid> ...args {flags}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
* `<pid>` process id of process that is to be killed
|
|
|
|
* ...args: rest of processes to kill
|
|
|
|
|
|
|
|
## Flags
|
|
|
|
* -h, --help: Display this help message
|
|
|
|
* -f, --force: forcefully kill the process
|
|
|
|
* -q, --quiet: won't print anything to the console
|
|
|
|
* -s, --signal <integer>: signal decimal number to be sent instead of the default 15 (unsupported on Windows)
|
|
|
|
|
|
|
|
## Examples
|
|
|
|
Kill the pid using the most memory
|
|
|
|
```shell
|
2021-12-02 18:49:24 +01:00
|
|
|
> ps | sort-by mem | last | each { kill $it.pid }
|
2021-05-30 02:57:04 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
Force kill a given pid
|
|
|
|
```shell
|
|
|
|
> kill --force 12345
|
|
|
|
```
|
|
|
|
|
|
|
|
Send INT signal
|
|
|
|
```shell
|
|
|
|
> kill -s 2 12345
|
|
|
|
```
|
|
|
|
|