ワンライナーでMLSから楽天モバイルのみのCSV作成

www.web-dev-qa-db-ja.com

curl -s https://location.services.mozilla.com/downloads \
| xmllint --html --xpath 'string(/html/body/div/section/ul/li[1]/a/@href)' - \
| xargs -n 1 curl -s \
| gzip -d \
| awk 'BEGIN{FS=","} $1 == "LTE" && $2 == 440 && $3 == 11 {print $0}' > mls_44011.csv