I have an ASCII CSV file containing a looooong line (7956 characters). When I use find.exe
to extract that line, it only prints the first 4095 bytes. Plus it appends no line feed, so the next hit (or whatever I add) gets glued to (4095 bytes of) the long line in the result.
When using the /N
option, the prepended [<line number>]
also counts, so the printed line still is 4095 bytes long (more is truncated).
I assume this is a bug...? Is there any workaround?