Recursively compute md5 checksum

The md5 checksum for all files in a folder can be recursively computed then stored in a text file called md5sum.txt with the command :*

cd /you/folder/of/interest
find -type f \( -not -name "md5sum.txt" \) -exec md5sum '{}' \; > md5sum.txt