0

質問があります:C#でVisual Studio 2010コンソールプロジェクトを実行するための.shファイルを作成するにはどうすればよいですか?ありがとう!

4

1 に答える 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 に答える