本文介绍了识别.MP3叫不上名字与shell脚本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想写在找到的内容,而不是BF文件名重复的MP3的一个脚本。我想知道如何人去约看到一个文件类型进行比较的缘故内的数据。
谢谢你。

I would like to write a script that finds duplicate mp3's by content and not bf file name. I am wondering how one goes about seeing a file types inner data for the sake of comparison. Thank you.

推荐答案

的可用于比较的二进制文件。

cmp can be used to compare binary files.

cmp file1.mp3 file2.mp3
if [[ $? -eq 0 ]]; then echo "Matched"; fi

CMP 命令返回 0 如果文件是相同的,否则 1

cmp command returns 0 if the files are same or else -1.

这篇关于识别.MP3叫不上名字与shell脚本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-01 07:01