briandfoy / PerlPowerTools

Perl Power Tools
https://metacpan.org/pod/PerlPowerTools
Other
211 stars 53 forks source link

od: fix data padding #665

Closed mknos closed 1 month ago

mknos commented 1 month ago
%wc -c a.c
197 a.c
%od -l a.c | tail -n 2   # gnu reference
0000300  1933534308          10
0000305
%perl od -l a.c | tail -n 2   # before patch; no value of 10 in output
00000300 1933534308 
00000305
briandfoy commented 1 month ago

changes: fix odd cases in output padding