std.process has a nice shell() function.

import std.process;
import std.stdio;

void main()
{
    string Output = shell("ls .");
    writeln("The contents of this directory are:");
    write(Output);
}

It is documented in the Phobos source, but not online. This makes me a little hesitant to use it in real code. Is it experimental and unstable, or are the online docs just falling behind?

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

The problem is the documentation generation. You can safely use that function, it's not going away.

I'll file this bug.

link|improve this answer
Fixed for the next release (dmd 2.057). – Jonathan M Davis Dec 11 '11 at 7:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.