c# aynı anda birden fazla cmd komutu çalıştıramıyorm
Örnek olarak
Önce "adb shell" komutu
Sonra peşinden "su" komutu
Sonrada "rm /data/system/gesture.key" komutu yazdırmak istiyorum ama bir türlü yapamadım
En son denediğim yöntm bu ama olmadı
Process process = new Process();
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.WindowStyle = ProcessWindowStyle.Hidden;
startInfo.CreateNoWindow = true;
startInfo.UseShellExecute = false;
startInfo.RedirectStandardOutput = true;
startInfo.FileName = "adb.exe";
startInfo.Arguments = "adb shell"+"su"+"rm /data/system/gesture.key";
process.StartInfo = startInfo;
process.Start();