mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-02 03:17:58 +01:00
fixed poor english :(
This commit is contained in:
parent
28f29660c3
commit
7a01d25b6f
1 changed files with 3 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
|||
# lsof
|
||||
|
||||
> Lists open files and the corresponding processes
|
||||
> Note: In most case, you need root privilege (or sudo) because you want to list files opened by other than you.
|
||||
> 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
|
||||
|
||||
|
@ -15,10 +15,10 @@
|
|||
|
||||
`lsof -t {{/path/to/file}}`
|
||||
|
||||
- list files opened by user
|
||||
- list files opened by the given user
|
||||
|
||||
`lsof -u {{username}}`
|
||||
|
||||
- list files opened by command (or process) name (e.x nginx)
|
||||
- list files opened by the given command or process (e.x nginx)
|
||||
|
||||
`lsof -c {{process_or_command_name}}`
|
||||
|
|
Loading…
Reference in a new issue