You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
echo abcdefg > f
(od -An -N3 -c; od -An -N3 -c) < f
What happens now: with uutils od, the first command consumes all bytes from the input file descriptor, leaving nothing for the second command:
a b c
What I expected to happen: with GNU od, the first command only consumes 3 bytes as requested, leaving the remainder of the file available for the second command:
a b c
d e f
Notes: this is causing a failure in GNU test file tests/od/od-N.sh.