rpdelaney-archive/python-chess-annotator

How to save the result?

DominoA4 opened this issue · 4 comments

Hello. The process managed to start using the command: annotator -f 123.pgn -E stockfish21040618 -g 1 -t 3. In the console, 100 games were processed at a time. How to save the result?

You need to capture the standard output using whatever method is appropriate to your shell. In bash, something like this should work:

$ annotator -f 123.pgn -E stockfish21040618 -g 1 -t 3 | tee output.pgn

Help!
"Tee" is not internal or external A command executed by a program or batch file.

I don't know what terminal you are using or what tools are available. You will have to look up how to do it in your own shell.

Thank you! You helped me very much. As a result, everything works like this:
annotator -f 123.pgn -e -stockfish_21040618_x64_modern -g 1 -t 3 > out.pgn