📌  相关文章
📜  bash 如何对目录中的所有文件生成 md5 校验和 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:49:32.001000             🧑  作者: Mango

代码示例1
# Basic syntax:
md5sum /path/to/directory/* > list_of_checksums

# Note, md5sum will run on any files that are found with your search
#     pattern. For example:
md5sum /path/*/*files_I_want* > list_of_checksums
# This would process all files than contain the substring "files_I_want"
# in all directories in the "path" directory