我正在尝试通过c#程序执行shell命令[应该在cygwin的sh.exe中]。
Process proc = new Process();
ProcessStartInfo procStartInfo = new ProcessStartInfo(@"C:\cygwin64\bin\sh.exe", "history");
procStartInfo.UseShellExecute = false;
procStartInfo.CreateNoWindow = true;
procStartInfo.RedirectStandardOutput = true;
procStartInfo.RedirectStandardError = true;
proc.StartInfo = procStartInfo;
proc.Start();
但是我收到以下错误而不是获取命令列表
/usr/bin/sh: history: No such file or directory
你能告诉我我在这里缺少什么吗?
由于