summaryrefslogtreecommitdiff
path: root/README.md
blob: 1da4eb7c5c8167df7e4d56e45ec43b973e80da08 (plain)
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 {}
```