我正在使用 dotnet-core 1.1。 Centos bash

有什么方法可以运行 grep wget 并检索结果?

像 Windows 中的 cmd,但我需要 grep 实时日志文件

最佳答案

您可以启动一个过程来grep并检索结果,您可以引用以下代码。

            System.Diagnostics.ProcessStartInfo procStartInfo;
            procStartInfo = new System.Diagnostics.ProcessStartInfo("/bin/bash", "-c \"cat myfile.log | grep -a 'dump f'\"");
            procStartInfo.RedirectStandardOutput = true;
            procStartInfo.RedirectStandardError = true;
            procStartInfo.UseShellExecute = false;

            procStartInfo.CreateNoWindow = true;

            System.Diagnostics.Process proc = new System.Diagnostics.Process();
            proc.StartInfo = procStartInfo;
            proc.Start();
            // Get the output into a string
            result = proc.StandardOutput.ReadToEnd();

关于bash - 如何在 dot.net core 中运行 bash 命令,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40987600/

10-10 13:02