使用 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

食谱无法正常工作?注释不清楚或过时了?

打开一个问题为这个食谱贡献代码

此任务的其他食谱