作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 dotnet-core 1.1。 centos 狂欢
有什么方法可以运行 grep 或 wget 并检索结果?
类似于Windows 中的cmd,但我需要grep 实时日志文件
System.Diagnostics.Process.Start("notepad.exe")
最佳答案
你可以启动一个进程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 核心中运行 bash 命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40987600/
我是一名优秀的程序员,十分优秀!