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 บน Windows XP แบบ 32 บิต:
"C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\csc.exe" PipeServer.cs /r:System.Core.dll
วิ่ง:
PipeServer foo in | programtwo
ในหน้าต่างเดียวและ:
programone \\.\pipe\foo
ในหน้าต่างสอง
Unity.exe -batchmode -projectPath C:\***\Application -logFile -buildWebPlayer web -quit
เราทำงานด้วยการสร้างความสามัคคีในโหมดแบทช์: หากไม่มีอาร์กิวเมนต์ (ชื่อไฟล์) ไปที่-logFile
- จะต้องพิมพ์เอาต์พุตไปยังคอนโซล แต่ไม่ต้อง หลังจากเพิ่ม CON (เช่น --logFile CON
) - ใช้ :-)