
md5sum
List of commands for md5sum:
-
md5sum:ai:12094 Calculates the MD5 hash value of the file m2 to check its integrity$ md5sum m2try on your machineexplain this command
-
md5sum:tldr:6ad95 md5sum: Only show a message for missing files or when verification fails.$ md5sum --check --quiet ${filename-md5}try on your machineexplain this command
-
md5sum:tldr:743d5 md5sum: Read a file of MD5 sums and filenames and verify all files have matching checksums.$ md5sum --check ${filename-md5}try on your machineexplain this command
-
md5sum:tldr:b75e8 md5sum: Only show a message when verification fails, ignoring missing files.$ md5sum --ignore-missing --check --quiet ${filename-md5}try on your machineexplain this command
-
md5sum:tldr:b8d90 md5sum: Calculate and save the list of MD5 checksums to a file.$ md5sum ${filename1 filename2 ---} > ${filename-md5}try on your machineexplain this command
-
md5sum:tldr:ce782 md5sum: Calculate an MD5 checksum from `stdin`.$ ${command} | md5sumtry on your machineexplain this command
-
md5sum:tldr:dfafb md5sum: Calculate the MD5 checksum for one or more files.$ md5sum ${filename1 filename2 ---}try on your machineexplain this command