質問があります:C#でVisual Studio 2010コンソールプロジェクトを実行するための.shファイルを作成するにはどうすればよいですか?ありがとう!
質問する
1440 次
1 に答える
0
bashスクリプトを実行するということですか?私はこれを見つけました
{
ProcessStartInfo psi = new ProcessStartInfo();
psi.FileName = "/tmp/bash.sh";
psi.UseShellExecute = false;
psi.RedirectStandardOutput = true;
psi.Arguments = "test";
Process p = Process.Start(psi);
string strOutput = p.StandardOutput.ReadToEnd();
p.WaitForExit();
Console.WriteLine(strOutput);
}
于 2013-03-07T18:19:13.890 に答える