12 lines
253 B
D
12 lines
253 B
D
import std.process;
|
|
import std.stdio;
|
|
|
|
void main() {
|
|
auto cmd = executeShell("echo hello");
|
|
|
|
if (cmd.status == 0) {
|
|
writeln("Output: ", cmd.output);
|
|
} else {
|
|
writeln("Failed to execute command, status=", cmd.status);
|
|
}
|
|
}
|