1 个不稳定版本
0.1.2 | 2024年1月27日 |
---|---|
0.1.1 |
|
0.1.0 |
|
#9 在 #process-file
36 每月下载量
10KB
198 行
Rust - mini lsof
使用 Rust 实现的简易 lsof
示例
use minilsof::LsofData;
//if return data is none unwarp will panic!
//lsof all
#[test]
fn test_lsall(){
let mut d = LsofData::new();
let result = d.file_ls().unwrap();
println!("{:?}",result);
}
//target file
#[test]
fn test_target(){
let filepath = "/usr/lib64/librt-2.28.so".to_string();
let mut d = LsofData::new();
let result = d.target_file_ls(filepath).unwrap();
println!("{:?}",result);
}
依赖
~48KB