1 2 3 4 5 6 7 8 9 10 11 12 13 14
# ogp-fetch ## Dev URL in `$1` Args ```bash go build -o ogp-fetch ./ogp-fetch https://soulminingrig.com/ ``` or ```bash cat urls | while read -r url ; do ./ogp-fetch $url ; done ``` ```bash cat urls | xargs -P 10 -I {} ./ogp-fetch {} ```