使用 feather 运行管道式外部命令

任务

操作系统 / 运行管道式外部命令

使用的 Opam 包

  • feather 测试版本: 0.3.0 — 使用的库: feather

代码

Feather 模块中的 |. 运算符可用于将不同的命令连接起来。

let () =
  let sort_output =
    Feather.(echo "t\nz\nu\na\nb" |. process "sort" [""] |> collect stdout)
  in
  print_string sort_output

食谱不起作用?注释不清楚或过时?

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

此任务的其他食谱