std.process
有一个很好的shell()
函数。
import std.process;
import std.stdio;
void main()
{
string Output = shell("ls .");
writeln("The contents of this directory are:");
write(Output);
}
它在Phobos来源中有记录,但不是online。这让我在实际代码中使用它有点犹豫。它是实验性的还是不稳定的,还是在线文档落后了?
答案 0 :(得分:5)
问题是文档生成。你可以安全地使用这个功能,它不会消失。
我将提交此错误。