1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-11-02 01:18:00 +01:00
tldr/pages/common/lsof.md
Vincent Bel 72548b6443 [lsof] Fixed typo after reformatted
The last letter of last word of [the three lines](9676334119 (diff-fe9ad5b63478a92eaf51544c5808ee6cL14)) was omitted after reformatted.
2016-01-28 14:35:41 +08:00

24 lines
541 B
Markdown

# lsof
> Lists open files and the corresponding processes.
> Note: In most cases, you need root privilege (or use sudo) because you want to list files opened by others.
- Find the processes that have a given file open:
`lsof {{/path/to/file}}`
- Find the process that opened a local internet port:
`lsof -i :{{port}}`
- Only output the process PID:
`lsof -t {{/path/to/file}}`
- List files opened by the given user:
`lsof -u {{username}}`
- List files opened by the given command or process:
`lsof -c {{process_or_command_name}}`