mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-03 07:55:02 +00:00
Update cheatsheets
This commit is contained in:
25
tldr/linux/lsfd
Normal file
25
tldr/linux/lsfd
Normal file
@@ -0,0 +1,25 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, linux]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# lsfd
|
||||
|
||||
> List open files and the corresponding processes in Linux.
|
||||
> More information: <https://manned.org/lsfd>.
|
||||
|
||||
- List all open file descriptors:
|
||||
|
||||
`lsfd`
|
||||
|
||||
- List all files kept open by a specific program:
|
||||
|
||||
`lsfd -Q 'PID == {{process_ID}}'`
|
||||
|
||||
- Check what program has a specific file open:
|
||||
|
||||
`lsfd -Q "NAME == '{{/path/to/file}}'"`
|
||||
|
||||
- List open IPv4 or IPv6 sockets:
|
||||
|
||||
`lsfd -i{{4|6}}`
|
||||
Reference in New Issue
Block a user