| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| src | 2019-03-08 | ||
| bin | 2019-03-07 | ||
| readme.txt | 2019-03-07 | 672 Bytes | |
| Totals: 3 Items | 672 Bytes | 2 |
Reads standard input, writes it to standard output and to zero or more files.
Syntax:
TEEW [/a] [names]
/a append to the listed files
names list of file names
NOTE the content written into the files will always be UTF-16 LE
Return values:
0 all streams have been written successfully
1 an error occurred while writing of at least one of the streams
2 a fatal error occurred, no data written
Usually the the standard output of a process shall be passed to the standard input of TeeW. Use the vertical bar (also known as "pipe") in the command line to realize it. E.g.:
TASKLIST | TEEW "tasks.txt"