mirror of
https://github.com/nushell/nushell
synced 2024-11-10 07:04:13 +00:00
Seems like accessing $it outside each is not possible now (#4000)
This commit is contained in:
parent
79c7b20cfd
commit
c00853a473
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ Kill a process using the process id.
|
|||
## Examples
|
||||
Kill the pid using the most memory
|
||||
```shell
|
||||
> ps | sort-by mem | last | kill $it.pid
|
||||
> ps | sort-by mem | last | each { kill $it.pid }
|
||||
```
|
||||
|
||||
Force kill a given pid
|
||||
|
|
Loading…
Reference in a new issue