mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-23 09:55:23 +02:00
LSOF command
This commit is contained in:
parent
d429e2a704
commit
6fd68cb8c2
1 changed files with 15 additions and 0 deletions
15
osx/lsof.md
Normal file
15
osx/lsof.md
Normal file
|
@ -0,0 +1,15 @@
|
|||
# lsof
|
||||
|
||||
> Lists open files and the correspondig processes
|
||||
|
||||
- find the processes that have a given file open
|
||||
|
||||
`lsof {{/path/to/file}}`
|
||||
|
||||
- find the process that opened a local internet port
|
||||
|
||||
`lsof -i :{{8080}}`
|
||||
|
||||
- only output the process PID (e.g. to pipe into kill)
|
||||
|
||||
`lsof -t {{/path/to/file}} | xargs kill -9`
|
Loading…
Add table
Reference in a new issue