Freebsd

試圖從命名錯誤的文件中獲取 md5

  • September 8, 2022

我正在嘗試從很多文件中獲取 md5。我會使用 ls 來列出文件和 md5 來獲取來自多個目錄的所有文件的雜湊,就像這樣

md5 ls -R /``

如果文件名不包含這樣的空格,這將起作用

[AkihitoSubs] Zetsuen no Tempest - 21 [BD 1920x1080 x256 10Bit AC3].mkv

如何從所有這些命名不佳的文件中獲取 md5 雜湊

find ./ -name "*" -exec md5sum {} \;

應該做的伎倆。

引用自:https://serverfault.com/questions/1110220