lsofrs 2.2.0

Modern, high-performance lsof implementation in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! lsofrs — modern, high-performance lsof implementation in Rust
//!
//! Maps the relationship between processes and the files they hold open.
//! Supports regular files, directories, sockets, pipes, devices, and streams.

#![allow(dead_code)]

pub mod cli;
#[cfg(target_os = "macos")]
pub mod darwin;
pub mod delta;
pub mod filter;
#[cfg(target_os = "linux")]
pub mod linux;
pub mod output;
pub mod types;