Windows no tiene equivalente directo a /dev/stdout
.
Aquí está mi intento de escribir un programa C # que cree una tubería con nombre , que se puede asignar al programa A como nombre de archivo. Requiere .NET v4.
(C # porque el compilador viene con .NET runtime, y ¿qué computadora no tiene .NET en estos días?)
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);
}
}
}
Compilar con:
csc PipeServer.cs /r:System.Core.dll
csc
se puede encontrar en %SystemRoot%\Microsoft.NET\Framework64\<version>\csc.exe
Por ejemplo, usando .NET Client Profile v4.0.30319 en un Windows XP de 32 bits:
"C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\csc.exe" PipeServer.cs /r:System.Core.dll
Correr:
PipeServer foo in | programtwo
en la ventana uno, y:
programone \\.\pipe\foo
en la ventana dos.
Unity.exe -batchmode -projectPath C:\***\Application -logFile -buildWebPlayer web -quit
. Sin argumento (nombre de archivo) para-logFile
- debe imprimir la salida a la consola, pero no lo hace. Después de agregar CON (es decir, --logFile CON
) - lo hace :-)