0

I want to use C# net Core Console Application in Linux Ubuntu. And I plan to generate an HTML text using this application.

This text should be passed to a program already existed in the linux and generate a .pdf file as a result.

Unfortunately, I couldn't find pipeline operations in C# Core.

How to do the best it?

alerya
  • 3,125
  • 3
  • 28
  • 50

1 Answers1

1

If you output the result on the standard output (e.g. using Console.WriteLine()), you will be able to use normal Unix pipes to pipe the result to another application, just as you can with any other console application.

svick
  • 236,525
  • 50
  • 385
  • 514