Skip to content

Instantly share code, notes, and snippets.

@jrichardsz
Created March 22, 2025 14:00
Show Gist options
  • Save jrichardsz/8dc762443845c1c3d4f001d578b66362 to your computer and use it in GitHub Desktop.
Save jrichardsz/8dc762443845c1c3d4f001d578b66362 to your computer and use it in GitHub Desktop.
c# cli snippets

Create a simple program

dotnet new console -n microsoft.botsay -f net8.

Program.cs

using System.Diagnostics;

Console.WriteLine("Executing shell command: "+String.Join(" ", args));

Process process = new Process();

ProcessStartInfo processStartInfo = new ProcessStartInfo();
processStartInfo.WindowStyle = ProcessWindowStyle.Hidden;
processStartInfo.FileName = @"/bin/bash";
processStartInfo.Arguments = "-c \""+String.Join(" ", args)+"\"";
processStartInfo.RedirectStandardOutput = true;
processStartInfo.RedirectStandardError = true;
processStartInfo.UseShellExecute = false;

process.StartInfo = processStartInfo;
process.Start();


Console.WriteLine("\nOutput");
Console.WriteLine(process.StandardOutput.ReadToEnd());

string error = process.StandardError.ReadToEnd();
if(error!=null && error!=""){
  Console.WriteLine("\nError");
  Console.WriteLine(process.StandardError.ReadToEnd());
}

Usage:

dotnet run date
dotnet run ls -la
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment