瀏覽代碼

fixed poor english :(

Yoshinari Takaoka 9 年之前
父節點
當前提交
7a01d25b6f
共有 1 個文件被更改,包括 3 次插入3 次删除
  1. 3 3
      pages/common/lsof.md

+ 3 - 3
pages/common/lsof.md

@@ -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}}`