如何通过 System.Diagnostics.Process() 将参数传递到已经打开的终端



我一直在搞砸通过 C# 触发 bash 脚本。当我第一次使用参数调用"open"命令时,这一切都可以正常工作,这反过来又通过终端打开我的 .command 脚本。

一旦使用"打开"命令,终端或iTerm将在后台保持打开状态,此时调用带有参数的"打开"命令将不再有效。遗憾的是,我不得不手动退出应用程序才能再次触发我的脚本。

如何将参数传递给已经打开的终端应用程序以在不退出的情况下重新启动脚本?

我搜索了在线广告似乎无法解决,已经花费了大量时间解决打开代码。非常感谢您的帮助。

以下是我用来启动该过程的 C# 代码:

var p = new System.Diagnostics.Process();
    p.StartInfo.FileName = "open";
    p.StartInfo.WorkingDirectory = installFolder;
    p.StartInfo.Arguments = "/bin/bash --args "open "SomePath/Commands/myscript.command""";
    p.Start();

谢谢

编辑:两个答案都是正确的,这可能会对其他人有所帮助:

    ProcessStartInfo startInfo = new ProcessStartInfo("/bin/bash");
    startInfo.WorkingDirectory = installFolder;
    startInfo.UseShellExecute = false;
    startInfo.RedirectStandardInput = true;
    startInfo.RedirectStandardOutput = true;
    Process process = new Process();
    process.StartInfo = startInfo;
    process.Start();
    process.StandardInput.WriteLine("echo helloworld");
    process.StandardInput.WriteLine("exit");  // if no exit then WaitForExit will lockup your program
    process.StandardInput.Flush();
    string line = process.StandardOutput.ReadLine();
    while (line != null)
    {
        Debug.Log("line:" + line);
        line = process.StandardOutput.ReadLine();
    }
    process.WaitForExit();
    //process.Kill(); // already killed my console told me with an error

你可以试试:

在致电p.Start()之前:

p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardInput = true;
// for the process to take commands from you, not from the keyboard

之后:

if (p != null)
{
    p.StandardInput.WriteLine("echo helloworld");
    p.StandardInput.WriteLine("executable.exe arg1 arg2");
}

(摘自此处)

这是您可能正在寻找的:

获取用于写入应用程序输入的流。

MSDN |进程.标准输入属性

// This could do the trick
process.StandardInput.WriteLine("..");

相关内容

  • 没有找到相关文章

最新更新