Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

To display the output of C# Medallion.Shell Filter in the console, you need to use the stdOut property of the CommandResult object. Here is an example:

using Medallion.Shell;
using System;

class Program
{
    static void Main(string[] args)
    {
        Command cmd = Command.Run("ls");
        CommandResult result = cmd.Result;
        Console.WriteLine(result.StdOut);
    }
}

In this example, we are running the ls command and storing the result in the result variable. We then print the StdOut property of the result object in the console.

You can replace the ls command with any other command you want to filter and display the output in the console.