I'm supposed to write a command line tool in C#. Problem is, I'm completely new to it and have to read up on a lot of stuff. The tool has to accept several parameters with a syntax I have no idea of what it does. It goes like this:
tool.exe \path\data.log /lastrun:file1.txt >file2.txt
- Is that /lastrun:... valid markup?
- I know that >file2.txt has something to do with output and stdout, but I barely find any info for dummies. Does it write a text file?
The tool is supposed to output data on stdout, which is meant to be read again and possibly processed with further console commands. How can one reference the output?
I have practically no experience with command line tools. I would appreciate if anyone could either drop me some smart words I could look up, links or simply explains me what is going on here.