diff options
Diffstat (limited to 'extra/sitemap/access_urls_query.sh')
-rwxr-xr-x | extra/sitemap/access_urls_query.sh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/extra/sitemap/access_urls_query.sh b/extra/sitemap/access_urls_query.sh index 6238a9d..e2439d0 100755 --- a/extra/sitemap/access_urls_query.sh +++ b/extra/sitemap/access_urls_query.sh @@ -8,8 +8,7 @@ SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )" # query for specific works; about 8.6 million circa 2021-04-29 # NOTE: filter out 12-digit access URLs (vs. 14-digit) -fatcat-cli search scholar 'doc_type:work (fulltext.access_type:ia_file OR fulltext.access_type:wayback) (NOT biblio.arxiv_id:*) (NOT biblio.pmcid:*) ((NOT biblio.publisher_type:big5) OR year:<1926 OR tags:oa)' --index-json --limit 0 \ - | jq -c 'select(.biblio.release_ident == .fulltext.release_ident)' \ +fatcat-cli search scholar 'doc_type:work (fulltext.access_type:ia_file OR fulltext.access_type:wayback) (NOT biblio.arxiv_id:*) (NOT biblio.pmcid:*) ((NOT biblio.publisher_type:big5) OR year:<=1926 OR tags:oa)' --index-json --limit 0 \ | jq -r '[.work_ident, .fulltext.access_type, .fulltext.access_url] | @tsv' \ | rg -v '^null' \ | rg -v 'web.archive.org/web/\d{12}/' \ |