This website is released under |
diff – Compare files line by lineSyntaxdiff {option} file_1 file_2 The diff tool for compares two text files line by line and calculates the differences between them. That difference file is called a patch and can by applied to the first text file to transform it into the second one using the patch tool. Options include
ExamplesSee the examples of usage given at the Process substitution page. In addition: # compare two checksum manifests, generated by the '-f framemd5' option of # 'ffmpeg', and print the differing MD5 values diff --side-by-side --width=80 --suppress-common-lines <(cat file_1 | cut -d, -f 6) <(cat file_2 | cut -d, -f 6) Further information
2022-07-01 |