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