Skip to content

Commit

Permalink
readme fix
Browse files Browse the repository at this point in the history
  • Loading branch information
madelson committed Nov 21, 2014
1 parent 64c3875 commit 93fd889
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var cmd = Command.Run("path_to_grep", "some REGEX") < new FileInfo("some path")
cmd.Wait();

// and we can even chain commands together with the pipe operator
var pipeline = Command.Run("path_to_grep, "some REGEX") | Command.Run("path_to_grep", "another REGEX");
var pipeline = Command.Run("path_to_grep", "some REGEX") | Command.Run("path_to_grep", "another REGEX");

// we can check a command's exit status using it's result
if (cmd.Result.Success) { ... }
Expand Down

0 comments on commit 93fd889

Please sign in to comment.