You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.4 KiB
C#
58 lines
1.4 KiB
C#
12 months ago
|
using System.Diagnostics;
|
||
|
|
||
|
namespace DS.Module.Core.Helpers;
|
||
|
|
||
|
/// <summary>
|
||
|
///
|
||
|
/// </summary>
|
||
|
public class ShellHelper
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// linux 系统命令
|
||
|
/// </summary>
|
||
|
/// <param name="command"></param>
|
||
|
/// <returns></returns>
|
||
|
public static string Bash(string command)
|
||
|
{
|
||
|
var escapedArgs = command.Replace("\"", "\\\"");
|
||
|
var process = new Process()
|
||
|
{
|
||
|
StartInfo = new ProcessStartInfo
|
||
|
{
|
||
|
FileName = "/bin/bash",
|
||
|
Arguments = $"-c \"{escapedArgs}\"",
|
||
|
RedirectStandardOutput = true,
|
||
|
UseShellExecute = false,
|
||
|
CreateNoWindow = true,
|
||
|
}
|
||
|
};
|
||
|
process.Start();
|
||
|
string result = process.StandardOutput.ReadToEnd();
|
||
|
process.WaitForExit();
|
||
|
process.Dispose();
|
||
|
return result;
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// windows系统命令
|
||
|
/// </summary>
|
||
|
/// <param name="fileName"></param>
|
||
|
/// <param name="args"></param>
|
||
|
/// <returns></returns>
|
||
|
public static string Cmd(string fileName, string args)
|
||
|
{
|
||
|
string output = string.Empty;
|
||
|
|
||
|
var info = new ProcessStartInfo();
|
||
|
info.FileName = fileName;
|
||
|
info.Arguments = args;
|
||
|
info.RedirectStandardOutput = true;
|
||
|
|
||
|
using (var process = Process.Start(info))
|
||
|
{
|
||
|
output = process.StandardOutput.ReadToEnd();
|
||
|
}
|
||
|
|
||
|
return output;
|
||
|
}
|
||
|
}
|