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:
[2014-10-26] | [Open System-Linux] |
XMLLINT command in linux : a validating XML parser |
[2014-10-06] | [Open System-Linux] |
Time command in Linux to give resource usage |
[2015-06-08] | [Open System-Linux] |
CHAGE command in LINUX |
[2016-12-11] | [Open System-Linux] |
Some great usage and example of find command in Linux |
[2016-04-14] | [Open System-Linux] |
AT command in Linux : schedule a task at later time |
Total comments: 0 | |