My grep command is generating a NUL byte at the end of its output.
I have file.xml
which contains only:
<Game>
<Player p1="Bob"/>
<Player p2="Fred"/>
</Game>
Now running grep -Pzo '<Game>(\n|.)*?(</Game>)'
gives the expected output:
<Game>
<Player p1="Bob"/>
<Player p2="Fred"/>
</Game>
But redirecting the output with grep -Pzo '<Game>(\n|.)*?(</Game>)' file.xml > out.md
shows the NUL byte at the end of the file when opened in Notepad++ & opens as a binary file in Sublime:
3c47 616d 653e 0a09 3c50 6c61 7965 7220
7031 3d22 426f 6222 2f3e 0a09 3c50 6c61
7965 7220 7032 3d22 4672 6564 222f 3e0a
3c2f 4761 6d65 3e00
This doesn't happen with other grep commands such as grep -rlF "Game" > out.md
.
Don't know which platform and grep version using, but I would just omit the -z option:
From GNU grep 3.0 doc:
HEX of file.xml:
So running:
HEX of out.md: