What are the differences between MD5 binary mode and text mode?
Here's my testing :
...$ md5sum -b roy.html
f9283ca2833ff7ebb6781ab8d23a21aa *roy.html
...$ md5sum -t roy.html
f9283ca2833ff7ebb6781ab8d23a21aa roy.html
Is there any different between these two mode ?
'-b' '--binary'
outputting a '*' flag. This is the inverse of --text. On systems like GNU that do not distinguish between binary and text files, this
option merely flags each input mode as binary: the MD5 checksum is
unaffected. This option is the default on systems like MS-DOS that
distinguish between binary and text files, except for reading
standard input when standard input is a terminal.
'-t' '--text'
上一篇: Gradle Eclipse插件可以将源jar文件附加到本地jar依赖项
下一篇: MD5二进制模式和文本模式有什么区别?