> I redownloaded the file cpartad and compared it with > "cmp -l" with the old file: > $ cmp -l cpartad cpartad.old > 4962108197 271 371 > > $ bc > ibase=10 > obase=2 > 271 > 100001111 > 371 > 101110011 > > It seems that 5 bits are wrong of the 23GB file transfer.
The differences reported by cmp -l are in octal; so this is actually a single bit error. % bc obase=2 ibase=8 271 10111001 371 11111001 -- This message posted from opensolaris.org _______________________________________________ opensolaris-discuss mailing list [email protected]
