Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
この 3 GB の非常に大きなテキスト ファイルがあり、MD5 ハッシュを持つ行のみを処理する必要があります。MD5 を持つ行だけを取り出すと、ファイルはずっと短くなると思います。私が考えていたのは、次のようなことをしていたことです。
$cat myfile.txt | grep '[a-fA-F0-9]{32}' > only_lines_with_hashes.txt
ありがとう