source: other-projects/hathitrust/wcsa/extracted-features-solr/trunk/solr-ingest/scripts/FULL-DOWNLOAD-EVERY-N.sh@ 31035

Last change on this file since 31035 was 31035, checked in by davidb, 7 years ago

Changes after testing scripts

  • Property svn:executable set to *
File size: 303 bytes
RevLine 
[31034]1#!/bin/bash
2
3if [ "$#" != "1" ] ; then
4 echo "Usage FULL-DOWNLOAD-EVERY-N.sh <num>" >&2
5 exit 1
6fi
7
8num=$1
9
10if [ ! -d full-ef-json-files ] ; then
11 mkdir full-ef-json-files
12fi
13
[31035]14rsync -pav --files-from=full-listing-step${num}.txt \
[31034]15 data.analytics.hathitrust.org::features/ full-ef-json-files/.
Note: See TracBrowser for help on using the repository browser.