Skip to content

Commit 4d7874d

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents 0209b3d + 1a44b90 commit 4d7874d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ await "cat package.json | grep name";
164164

165165
// receive result msg of stdout
166166
var branch = await "git branch --show-current";
167-
await run($"dep deploy --branch={branch}");
167+
await $"dep deploy --branch={branch}";
168168

169169
// parallel request (similar as Task.WhenAll)
170170
await new[]
@@ -260,6 +260,8 @@ var (stdout, stderror) = process2($"");
260260

261261
`await string` does not escape argument so recommend to use `run($"string")` when use with argument.
262262

263+
If you want to more colorize like Chalk on JavaScript, [Kokuban](https://github.com/mayuki/Kokuban) styler for .NET Console app will help.
264+
263265
Reference
264266
---
265267
`ProcessX.StartAsync` overloads, you can set workingDirectory, environmentVariable, encoding.
@@ -300,6 +302,7 @@ Competitor
300302
---
301303
* [Tyrrrz/CliWrap](https://github.com/Tyrrrz/CliWrap) - Wrapper for command line interfaces.
302304
* [jamesmanning/RunProcessAsTask](https://github.com/jamesmanning/RunProcessAsTask) - Simple wrapper around System.Diagnostics.Process to expose it as a System.Threading.Tasks.Task.
305+
* [mayuki/Chell](https://github.com/mayuki/Chell) Write scripts with the power of C# and .NET.
303306

304307
License
305308
---

0 commit comments

Comments
 (0)