blob: c02eb74e5a154a68381e88f83b3f966314fbf1fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/usr/bin/env bash
set -e # fail on error
set -u # fail if variable not set in substitution
set -o pipefail # fail if part of a '|' command fails
: ${1?' You you did not supply a date argument'}
# eg, 2020-08-19
DATE="$1"
# query for specific works
fatcat-cli search scholar "doc_type:work (fulltext.access_type:ia_file OR fulltext.access_type:wayback) (year:<1925 OR publisher_type:longtail OR publisher_type:oa)" --index-json --limit 0 \
| pv -l \
| jq .key -r \
| tr '_' '/' \
| awk '{print "https://scholar.archive.org/" $1}' \
| split --lines 20000 - sitemap-works-$DATE- -d -a 5 --additional-suffix .txt
gzip sitemap-works-*.txt
|