3 A simple [**`tee`**](https://en.wikipedia.org/wiki/Tee_(command)) implementation for Microsoft Windows.
11 your_program.exe [...] | tee.exe [options] <output_file>
14 --append Append to the existing file, instead of truncating
15 --flush Flush output file after each write operation
16 --ignore Ignore the interrupt signal (SIGINT), e.g. CTRL+C
21 This is a "native" implementation of `tee` that builds directly on top of the Win32 API.
23 It uses multi-threaded processing and double buffering for maximum throughput.
27 Copyright (c) 2023 "dEajL3kA" <Cumpoing79@web.de>
28 This work has been released under the MIT license. See [LICENSE.txt](LICENSE.txt) for details!