当使用 MD5 时,我得到一个文本文件输出,其中包含文件的完整路径和文件名,然后是空格和哈希值。
想知道是否有办法省略路径,只使用 filename = hash
通过自动化程序使用终端
find "$1" -type f -print0 | xargs -0 md5 > "$2/MD5_Digest.md5"
答案1
使用-q
命令行开关使输出“安静”
$ md5 -q my_file_to_test
d41d8cd98f00b204e9800998ecf8427e
$
当使用 MD5 时,我得到一个文本文件输出,其中包含文件的完整路径和文件名,然后是空格和哈希值。
想知道是否有办法省略路径,只使用 filename = hash
通过自动化程序使用终端
find "$1" -type f -print0 | xargs -0 md5 > "$2/MD5_Digest.md5"
使用-q
命令行开关使输出“安静”
$ md5 -q my_file_to_test
d41d8cd98f00b204e9800998ecf8427e
$