Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use CliWrap in C #

2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

This article introduces the relevant knowledge of "how to use CliWrap in C#". In the operation of actual cases, many people will encounter such a dilemma. Then let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!

Command-line interaction in code is a common scenario, especially in some CI CD automation processes, where we used System.Diagnostics.Process API before, and now there is a more flexible tool, CliWarp, a command-line interaction library used on the .NET platform, which makes command-line interaction light by using Fluent's API in C #.

Https://github.com/Tyrrrz/CliWrap

The main features are as follows:

Based on System.Diagnostics.Process

Simple, smooth API design

Flexible support for pipeline mode

Secure asynchronism and support for cancellation API

Cross-platform, available on Windows, Linux, and macOS

Supports .NET Standard 2.0 +, .NET Core 3.0 +, .NET Framework 4.6.1 +

Similar to shell, the basic unit of work of CliWrap is a command, which first executes Cli.Wrap (...). Create a command with the parameter as the path to the executable file, then configure it through fluent api, and finally call the ExecuteAsync run command, as follows:

Using CliWrap;using CliWrap.Buffered;var result = await Cli.Wrap ("path/to/exe") / /. .ExecuteBufferedAsync (); configuration parameter var cmd = Cli.Wrap ("git") .WithArguments ("commit-m\" my commit\ ""); var cmd = Cli.Wrap ("git") .WithArguments (new [] {"commit", "- m", "my commit"}) Var cmd = Cli.Wrap ("git") .WithArguments (args = > args .add ("clone") .add ("https://github.com/Tyrrrz/CliWrap") .add ("-- depth ") .Add (20)); configure the working directory

The default is the current directory, and you can also specify the relative and absolute paths of the folder

Var cmd = Cli.Wrap ("git") .WithWorkingDirectory ("c:/projects/my project/"); configuration environment variable var cmd = Cli.Wrap ("git") .WithEnvironment variables (env = > env .Set ("GIT_AUTHOR_NAME", "John") .Set ("GIT_AUTHOR_EMAIL", "john@email.com")); timeout and cancellation using var cts = new CancellationTokenSource (); cts.CancelAfter (TimeSpan.FromSeconds (10)) Var result = await Cli.Wrap ("path/to/exe") .ExecuteAsync (cts.Token); pull-based event flow

In addition to executing commands, CliWrap also supports an event flow model that allows you to subscribe to related event callbacks.

StartedCommandEvent-received only once, when the command starts execution (including process ID)

StandardOutputCommandEvent-received each time the underlying process writes a new line to the output stream (including text as a string)

StandardErrorCommandEvent-received each time the underlying process writes a new line to the error stream (including text as a string)

ExitedCommandEvent-received only once, when the command finishes execution (including exit code)

Using CliWrap;using CliWrap.EventStream;var cmd = Cli.Wrap ("foo"). WithArguments ("bar"); await foreach (var cmdEvent in cmd.ListenAsync ()) {switch (cmdEvent) {case StartedCommandEvent started: _ output.WriteLine ($"Process started; ID: {started.ProcessId}"); break; case StandardOutputCommandEvent stdOut: _ output.WriteLine ($"Out > {stdOut.Text}"); break Case StandardErrorCommandEvent stdErr: _ output.WriteLine ($"Err > {stdErr.Text}"); break; case ExitedCommandEvent exited: _ output.WriteLine ($"Process exited; Code: {exited.ExitCode}"); break;}}

The output is as follows:

That's all for "how to use CliWrap in C #". Thank you for reading. If you want to know more about the industry, you can follow the website, the editor will output more high-quality practical articles for you!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report