How can I recursively list Md5sum of all the files in a directory and its subdirectories?
You could use find
(in the directory)
find -type f -exec md5sum '{}' \; > md5sum.txt
If you want to exclude the md5sum.txt
file itself, you can do so:
find -type f \( -not -name "md5sum.txt" \) -exec md5sum '{}' \; > md5sum.txt
You can also use a loop: turn on recursive globbing
shopt -s globstar
Then, in the directory:
for i in **; do [[ -f "$i" ]] && md5sum "$i" >> md5sum.txt; done
You can exclude the file itself from this one as well:
for i in **; do
[[ -f "$i" ]] &&
[[ md5sum.txt != "$i" ]] &&
md5sum "$i" >> md5sum.txt
done
Neither of these produces a tree
-like structure. But they do print the relative path to the file from the starting directory. If you want the absolute path, use find /path/to/directory ...
You might want to turn off globstar afterwards (shopt -u globstar
)
You can execute the following command:
md5sum /path/to/directory/* > /path_to_result/md5sum.txt
The output in the result file will be something like that:
46684e3891d990acde2e723ee3d4e94a /var/log/alternatives.log
39cf1ebf93452ed5f8b240b35ae73f9f /var/log/alternatives.log.1
aa6c09c411d1d0870bca5f401d589332 /var/log/alternatives.log.2.gz