Terminology

如何有效地搜尋比特幣開發郵件列表以討論特定術語?

  • August 17, 2021

如何有效地搜尋比特幣開發郵件列表以討論特定術語,例如棄用 BIP37 支持?

這個問題是由 IRC 上的 pinheadmz 提出的。

最簡單的方法是使用搜尋引擎,例如 Google 並輸入:

"bip37 site:lists.linuxfoundation.org"

(這對於搜尋 GitHub 問題也很有用,作為 Google 搜尋的拉取請求通常比 github.com 搜尋功能更有效。)

或者,您可以訪問<https://lists.linuxfoundation.org/pipermail/bitcoin-dev/>並下載所有 gzip mbox(URL 方案很簡單,因此您使用 curl 編寫 shell 單行),解壓縮它們,cat將它們放在一起,然後使用mutt -f combined.mbox.

url="https://lists.linuxfoundation.org/pipermail/bitcoin-dev/"
for file in $(curl $url | grep -Eo \\d{4}-\\w+\\.txt\\.gz); do 
wget "$url$file"
done
gzip *.gz
cat *.txt &gt; combined.mbox
mutt -f combined.mbox

IRC 上的不同人回答了這個問題。感謝提供上述 shell 腳本的個人。

引用自:https://bitcoin.stackexchange.com/questions/107756