The md5 method to generate all files in the current folder in the Linux system

In the Linux system, use the following command to generate the md5 value of all files in the current directory (including files in subdirectories)

find ./ -type f -print0 | xargs -0 md5sum > ./my.md5

Guess you like

Origin blog.51cto.com/14950099/2636033