You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

CmdHelper.cs 2.0 kB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*****************************************************************************
  2. Copyright 2018 The TensorFlow.NET Authors. All Rights Reserved.
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. ******************************************************************************/
  13. using System;
  14. using System.Diagnostics;
  15. namespace Tensorflow.Util
  16. {
  17. public static class CmdHelper
  18. {
  19. public static void Command(string command)
  20. {
  21. Process proc = new System.Diagnostics.Process();
  22. proc.StartInfo.FileName = @"C:\Windows\System32\cmd.exe";
  23. proc.StartInfo.Arguments = "/c \" " + command + " \"";
  24. proc.StartInfo.UseShellExecute = false;
  25. proc.StartInfo.RedirectStandardOutput = true;
  26. proc.Start();
  27. while (!proc.StandardOutput.EndOfStream)
  28. Binding.tf_output_redirect.WriteLine(proc.StandardOutput.ReadLine());
  29. }
  30. public static void Bash(string command)
  31. {
  32. Process proc = new System.Diagnostics.Process();
  33. proc.StartInfo.FileName = "/bin/bash";
  34. proc.StartInfo.Arguments = "-c \" " + command + " \"";
  35. proc.StartInfo.UseShellExecute = false;
  36. proc.StartInfo.RedirectStandardOutput = true;
  37. proc.Start();
  38. while (!proc.StandardOutput.EndOfStream)
  39. Binding.tf_output_redirect.WriteLine(proc.StandardOutput.ReadLine());
  40. }
  41. }
  42. }