Windows не имеет прямого эквивалента /dev/stdout
.
Вот моя попытка написать программу на C #, которая создает именованный канал, который может быть задан программе A как имя файла. Требуется .NET v4.
(C # потому что компилятор поставляется с .NET runtime, а какой компьютер не имеет .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);
}
}
}
Компилировать с:
csc PipeServer.cs /r:System.Core.dll
csc
может быть найден в %SystemRoot%\Microsoft.NET\Framework64\<version>\csc.exe
Например, используя .NET Client Profile v4.0.30319 в 32-битной Windows XP:
"C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\csc.exe" PipeServer.cs /r:System.Core.dll
Бежать:
PipeServer foo in | programtwo
в первом окне и:
programone \\.\pipe\foo
во втором окне.