Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
根据这篇文章,有一个代码返回列表字符串* Unix.processStatus。
使用 OCaml 收集外部命令的输出
但是你如何重写这段代码来只返回一个字符串呢?例如,当我跑步时
回声'测试' | base64
我只想得到编码的字符串作为结果。
谢谢你。
好吧,进程状态告诉您命令是否正常工作。所以你说你不在乎它是否有效,你只想要答案。
有一个名为的内置 OCaml 函数fst,它返回一对的第一部分并丢弃第二部分。您可以使用它来获取stringfrom string * Unix.processStatus。
fst
string
string * Unix.processStatus