操作系统 / 运行管道式外部命令
Feather 模块中的 |. 运算符可用于将不同的命令连接起来。
Feather
|.
let () = let sort_output = Feather.(echo "t\nz\nu\na\nb" |. process "sort" [""] |> collect stdout) in print_string sort_output