如何递归 sha256sum 目录
此命令将递归地对目录中的所有文件运行 sha256sum:
recursive_sha256sum.sh
find . -type f -print0 | xargs -0 sha256sum你也可以将其管道传输到文件
recursive_sha256sum_to_file.sh
find . -type f -print0 | xargs -0 sha256sum > recursive-sha256sum.txtCheck out similar posts by category:
Linux
If this post helped you, please consider buying me a coffee or donating via PayPal to support research & publishing of new posts on TechOverflow