We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MD5 ハッシュ計算時に LF が混入している個所がたくさんある。というかたぶん全てそうなっているかもしれない。
後々混乱することになりそうなので、どこかのタイミングで見直したほうが良いかもしれない。(既に集計済みのデータがたくさんあるから今の時点から後戻りするのは難しいかもしれないけど)
$ head urls-md5.csv .... ceba9b3c956119ab5db9cfe5c61bc564,https://betsukai.jp/anzen/index.html ....
このハッシュ値は "https://betsukai.jp/anzen/index.html" ではなく "https://betsukai.jp/anzen/index.html\n" のハッシュ値になってしまっている。
"https://betsukai.jp/anzen/index.html"
"https://betsukai.jp/anzen/index.html\n"
$ echo https://betsukai.jp/anzen/index.html | md5sum ceba9b3c956119ab5db9cfe5c61bc564 -
$ echo -n https://betsukai.jp/anzen/index.html | md5sum ffd2414e0209e2f2b6b2c90ba0a74815 -
こっちが本来の "https://betsukai.jp/anzen/index.html" の MD5 ハッシュ値。
The text was updated successfully, but these errors were encountered:
No branches or pull requests
MD5 ハッシュ計算時に LF が混入している個所がたくさんある。というかたぶん全てそうなっているかもしれない。
後々混乱することになりそうなので、どこかのタイミングで見直したほうが良いかもしれない。(既に集計済みのデータがたくさんあるから今の時点から後戻りするのは難しいかもしれないけど)
データ例
このハッシュ値は
"https://betsukai.jp/anzen/index.html"
ではなく"https://betsukai.jp/anzen/index.html\n"
のハッシュ値になってしまっている。参考:LF を混入させない方法
LF が混ざるコマンド
LF が混ざらないコマンド
こっちが本来の
"https://betsukai.jp/anzen/index.html"
の MD5 ハッシュ値。The text was updated successfully, but these errors were encountered: