diff options
author | Bryan Newbold <bnewbold@archive.org> | 2021-06-11 15:13:39 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2021-06-11 15:13:39 -0700 |
commit | 6cad89bfbd343338137da604abc76a0e3fb23d8b (patch) | |
tree | 57a35e105892ab57ffaaa2449bc8ae0c77ed3c7f /extra/sitemap/access_urls_query.sh | |
parent | 388eeaf4fa137522ec90c96e57581ced33205e57 (diff) | |
download | fatcat-scholar-6cad89bfbd343338137da604abc76a0e3fb23d8b.tar.gz fatcat-scholar-6cad89bfbd343338137da604abc76a0e3fb23d8b.zip |
sitemap: new access URL format
Diffstat (limited to 'extra/sitemap/access_urls_query.sh')
-rwxr-xr-x | extra/sitemap/access_urls_query.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extra/sitemap/access_urls_query.sh b/extra/sitemap/access_urls_query.sh index eb34564..7f1c3ef 100755 --- a/extra/sitemap/access_urls_query.sh +++ b/extra/sitemap/access_urls_query.sh @@ -10,7 +10,7 @@ SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )" # 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) (year:<1926 OR tags:*)' --index-json --limit 0 \ | pv -l \ - | jq '[.fulltext.access_type, .fulltext.access_url] | @tsv' -r \ + | jq '[.work_ident, .fulltext.access_type, .fulltext.access_url] | @tsv' -r \ | rg -v '^null' \ | rg -v 'web.archive.org/web/\d{12}/' \ | $SCRIPT_DIR/transform_access_url.py \ |