1

Standard diary does not overwrite existing diary output. That's useful. I sometimes want to check my previous results.

But at the same time, when the output is large, it becomes hard to find where the result from the most-current execution starts.

So I wanted to have both files: One with most current output, another with all the accumulated results.

I did

diary result_accumulated.out

delete result.out
diary result.out

But result_accumulated.out is not being generated.

What should I do?

user42459
  • 883
  • 3
  • 12
  • 29

1 Answers1

1

You can use

diary result.out
...
diary off

and then append result.out to result_accumulated.out