no way to redirect xterm like cmd

This commit is contained in:
Basile Burg 2014-12-07 08:53:55 +01:00
parent 1cf1a81c56
commit 817944c2e6
1 changed files with 3 additions and 2 deletions

View File

@ -14,10 +14,11 @@ void main(string args[])
{ {
import std.process; import std.process;
// //
string prgname;
version(Windows) version(Windows)
string prgname = "cmd"; prgname = "cmd";
/*else /*else
version(linux) string prgname = "xterm";*/ version(linux) prgname = "xterm";*/
else else
assert(0, "unsupported target"); assert(0, "unsupported target");
// //