source: gs3-installations/intermuse/trunk/sites/intermuse/collect/programmes-and-performers/INDEX-ALL-IIIF-MANIFESTS.sh@ 37164

Last change on this file since 37164 was 37164, checked in by davidb, 15 months ago

Further development of manifest indexing for search

  • Property svn:executable set to *
File size: 453 bytes
Line 
1#!/bin/bash
2
3echo ""
4echo "From some empirical testing it looks like submitting the same document ID again to be"
5echo "indexed, doesn't lead to multiple copies of the text occurring"
6echo ""
7sleep 3
8
9
10prog_id_list=`jdb2txt.pl archives/archiveinf-doc.jdb | egrep "^\[.*\]\$" | egrep -v "^\[D[0-9]+\]" | sed 's/^\[//' | sed 's/\]$//'`
11
12echo "Programme IDs:"
13for prog_id in $prog_id_list ; do
14 echo "$prog_id"
15 ./INDEX-IIIF-MANIFEST.sh "$prog_id"
16done
Note: See TracBrowser for help on using the repository browser.