echo -n "ABCDEF" | xxd -c6 -e
00000000: 44434241 4645CDEF
And
echo -n "ABCDEFGHI" | xxd -c9 -e
00000000: 44434241 48474645 AB49EFGHI
I expected that using -e for little-endian will not cause missing characters.
Expected output:
00000000: 44434241 4645 ABCDEF
Or
00000000: 44434241 4645 ABCDEF
From v7.4.652 to patch 9.0.1373
Ubuntu, not relating terminal/shell.
No response
—
Reply to this email directly, view it on GitHub.
You are receiving this because you are subscribed to this thread.![]()
Closed #12097 as completed via 4390d87.
—
Reply to this email directly, view it on GitHub.
You are receiving this because you are subscribed to this thread.![]()
-c3 still misses space
echo -n "ABCDEFGHI" | ./xxd -c3 -e
00000000: 43 41 42ABC
00000003: 46 44 45DEF
00000006: 49 47 48GHI
—
Reply to this email directly, view it on GitHub.
You are receiving this because you are subscribed to this thread.![]()
—
Reply to this email directly, view it on GitHub.
You are receiving this because you are subscribed to this thread.![]()