使用 feather 运行外部命令并处理标准输出
任务
操作系统 / 运行外部命令并处理标准输出
使用的 Opam 包
- feather 测试版本:0.3.0 — 使用的库:feather
代码
Feather.process
执行程序,Feather.collect
返回包含整个标准输出的单个字符串。
let () =
let ps_output =
Feather.(process "ps" ["-x"]
|> collect stdout)
in
print_endline ps_output