Horje
bash compare two lists of checksums Code Example
bash compare two lists of checksums
# Example usage:
cat checksum_list_1 checksum_list_2 | sort | uniq -c | sort | less
# This command concatenates the lists, sorts them so that repeated
# checksums are adjactent, adds the count of each, and then sorts them
# again so that highers counts are at the bottom. Normally, when 
# transferring files from A to B, you expect a count of two for each
# file. Counts of one indicate unique md5sums which probably mean there
# was an issue in the transfer




Shell

Related
Could not create service of type FileHasher using BuildSessionServices.createFileHasher() Code Example Could not create service of type FileHasher using BuildSessionServices.createFileHasher() Code Example
double quotes inside double quotes bash Code Example double quotes inside double quotes bash Code Example
tmux how to scroll in history Code Example tmux how to scroll in history Code Example
ubuntu echo create file readme.md Code Example ubuntu echo create file readme.md Code Example
how to install data purifer Code Example how to install data purifer Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
15