2017-05-18 70 views

回答

0

您需要添加依賴關係的System.Diagnostics.Process API Reference

則可以執行bash命令狀這個。 請將此視爲僞代碼,因爲我不在Linux機器附近進行測試

ProcessStartInfo psi = new ProcessStartInfo(); 
     psi.FileName = "/bin/bash"; 
     psi.Arguments = "-c sudo ifconfig eth0 192.168.0.1 netmask 255.255.255.0"; 
     psi.UseShellExecute = true; 
     psi.RedirectStandardOutput = true; 

     Process proc = new Process 
     { 
      StartInfo = psi 
     }; 

     proc.Start(); 
相關問題