Windows'un doğrudan bir eşdeğeri yoktur /dev/stdout
.
İşte A programına bir dosya adı olarak verilebilen adlandırılmış bir kanal oluşturan bir C # programı yazma girişimim . .NET v4 gerektirir.
(Derleyici .NET çalışma zamanı ile geldiğinden ve bu bilgisayarda hangi bilgisayarın .NET'i olmadığı için C #?
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);
}
}
}
Şununla derleyin:
csc PipeServer.cs /r:System.Core.dll
csc
Içinde bulunabilir %SystemRoot%\Microsoft.NET\Framework64\<version>\csc.exe
Örneğin, 32 bit Windows XP'de .NET İstemci Profili v4.0.30319'u kullanma:
"C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\csc.exe" PipeServer.cs /r:System.Core.dll
Çalıştırmak:
PipeServer foo in | programtwo
birinci pencerede ve:
programone \\.\pipe\foo
İkinci pencerede.
Unity.exe -batchmode -projectPath C:\***\Application -logFile -buildWebPlayer web -quit
. Argümanı (dosya adı) olmadan-logFile
- çıktıyı konsola yazdırmalıdır, ancak yazdırmaz. CON (ie --logFile CON
) ekledikten sonra - öyle :-)