6:49 PM md5sum: calculate and check md5 message digest of a file in Linux |
md5sum - compute and check MD5 message digest FORMAT DESCRIPTION -b, --binary -c, --check -t, --text
Now if you change the file or modify the content of the file, the md5 checksum will change. So md5sum is the best command in linux to detect if a file has been modified or not.
Here, you may notice that the checksum has chenged!! Example: Suppose you want to detect that the file is modified and the moment it is modified, print a message "The file is modified"
In the above piece of script, we have stored the current md5 checksum of the file into "md5cur". Now we are using an until loop to compare the current md5 checksum with the new one continuously. Until the new checksum is different from the current one, the loop will continue. And the moment someone makes any chanegs in the file, the loop condition fails and we get a message "The file is modified!" Another use of this command is to make sure that the two files are same. The two files no maater where they are located, if they are having similar md5 checksum, they are totally identical files. |
|
Related blogs
You may also like to see:
[2016-05-11] | [Open System-Linux] |
An example to understand bash exit code $? in linux. |
[2016-10-12] | [Open System-Linux] |
Remove Control M characters from a script or any file in Linux/AIX |
[2014-09-13] | [Open System-Linux] |
md5sum: calculate and check md5 message digest of a file in Linux |
[2014-03-03] | [Open System-Linux] |
Working with VI Editor: Basic and Advanced |
[2014-03-12] | [Open System-Linux] |
uptime command in Linux |
Total comments: 0 | |