• 请不要在回答技术问题时复制粘贴 AI 生成的内容
madworks
V2EX  ›  程序员

有通过 md5 等批量校验比对的软件或工具吗? bcompare 好像没有

  •  
  •   madworks · Dec 19, 2019 · 2861 views
    This topic created in 2338 days ago, the information mentioned may be changed or developed.

    各位大佬如果有的话可以推荐下

    6 replies    2019-12-19 22:51:33 +08:00
    ly4572615
        1
    ly4572615  
       Dec 19, 2019
    Md5Checker,直接搜名字就有
    Arnie97
        2
    Arnie97  
       Dec 19, 2019 via Android
    这个「 MD5 等」的「等」都包括啥,bcompare 有 CRC
    zhaishunqi
        3
    zhaishunqi  
       Dec 19, 2019
    解压软件都自带的。。。
    imn1
        4
    imn1  
       Dec 19, 2019
    Total Commander 自带多种校验
    自己写个脚本
    microxiaoxiao
        5
    microxiaoxiao  
       Dec 19, 2019
    #!/bin/bash
    rm -rf /tmp/A
    rm -rf /tmp/B
    old=`pwd`
    dir1=$1
    dir2=$2
    cd $dir1
    find -type f -exec md5sum {} \; >> /tmp/A
    cd $dir2
    find -type f -exec md5sum {} \; >> /tmp/B
    cd $old
    vimdiff /tmp/A /tmp/B
    ysc3839
        6
    ysc3839  
       Dec 19, 2019
    是不是手头上有一个 md5sum 文件,需要计算实际文件的 md5 然后和 md5sum 里面的进行比较?
    Windows 下的话可以用 https://github.com/gurnec/HashCheck
    这是一个 shell 扩展,能在右键属性里面添加一个校验的页面,也可以根据 md5sum sha1sum 来校验文件。(需要把 md5sum 改名为 .md5 后缀,然后直接打开)
    About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   1147 Online   Highest 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 53ms · UTC 23:06 · PVG 07:06 · LAX 16:06 · JFK 19:06
    ♥ Do have faith in what you're doing.