Windows nie ma bezpośredniego odpowiednika /dev/stdout
.
Oto moja próba napisania programu w języku C #, który tworzy nazwany potok , który można podać programowi A jako nazwę pliku. Wymaga .NET v4.
(C #, ponieważ kompilator jest wyposażony w środowisko uruchomieniowe .NET, a który komputer nie ma obecnie .NET?)
PipeServer.cs
using System;
using System.IO;
using System.IO.Pipes;
class PipeServer {
static int Main(string[] args) {
string usage = "Usage: PipeServer <name> <in | out>";
if (args.Length != 2) {
Console.WriteLine(usage);
return 1;
}
string name = args[0];
if (String.Compare(args[1], "in") == 0) {
Pipe(name, PipeDirection.In);
}
else if (String.Compare(args[1], "out") == 0) {
Pipe(name, PipeDirection.Out);
}
else {
Console.WriteLine(usage);
return 1;
}
return 0;
}
static void Pipe(string name, PipeDirection dir) {
NamedPipeServerStream pipe = new NamedPipeServerStream(name, dir, 1);
pipe.WaitForConnection();
try {
switch (dir) {
case PipeDirection.In:
pipe.CopyTo(Console.OpenStandardOutput());
break;
case PipeDirection.Out:
Console.OpenStandardInput().CopyTo(pipe);
break;
default:
Console.WriteLine("unsupported direction {0}", dir);
return;
}
} catch (IOException e) {
Console.WriteLine("error: {0}", e.Message);
}
}
}
Połącz z:
csc PipeServer.cs /r:System.Core.dll
csc
może być znaleziony w %SystemRoot%\Microsoft.NET\Framework64\<version>\csc.exe
Na przykład za pomocą .NET Client Profile v4.0.30319 w 32-bitowym systemie Windows XP:
"C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\csc.exe" PipeServer.cs /r:System.Core.dll
Biegać:
PipeServer foo in | programtwo
w pierwszym oknie i:
programone \\.\pipe\foo
w oknie drugim.
Unity.exe -batchmode -projectPath C:\***\Application -logFile -buildWebPlayer web -quit
. Bez argumentu (nazwa pliku) do-logFile
- musi wypisać dane wyjściowe na konsolę, ale nie robi tego. Po dodaniu CON (tj.-logFile CON
) - robi :-)