source: gs3-extensions/maori-lang-detection/hdfs-instructions/scripts/get_Maori_WET_records_from_CCSep2018_on.sh@ 33526

Last change on this file since 33526 was 33526, checked in by ak19, 5 years ago

Moved hadoop related scripts from bin/script into hdfs-instructions

  • Property svn:executable set to *
File size: 1.3 KB
Line 
1#!/bin/bash
2
3# crawl_ids are from http://index.commoncrawl.org/
4# We only want the crawl_ids from Sep 2018 and onwards as that's when
5# the content_languages field was included in CommonCrawl's columnar index
6
7# https://www.cyberciti.biz/faq/bash-for-loop-array/
8# (else chain commands as at https://superuser.com/questions/237072/wrapping-long-bash-commands-in-script-files)
9crawl_ids=( "CC-MAIN-2019-35" "CC-MAIN-2019-30" "CC-MAIN-2019-26" \
10 "CC-MAIN-2019-22" "CC-MAIN-2019-18" "CC-MAIN-2019-13" \
11 "CC-MAIN-2019-09" "CC-MAIN-2019-04" "CC-MAIN-2018-51" \
12 "CC-MAIN-2018-47" "CC-MAIN-2018-43" "CC-MAIN-2018-39" )
13
14for crawl_id in "${crawl_ids[@]}"
15do
16 echo "About to start off index and WARC download process for CRAWL ID: $crawl_id"
17 ./cc-index-table/src/script/get_maori_WET_records_for_crawl.sh $crawl_id
18 result=$?
19 if [ $result != 0 ]; then
20 echo "Processing common-crawl $crawl_id failed with exit value: $result"
21 echo "Will cease to process remaining cc crawls. Exitting..."
22 exit $result
23 fi
24done
25
26# Important note from
27# https://www.tldp.org/LDP/abs/html/exit-status.html
28# "When a script ends with an exit that has no parameter, the exit
29# status of the script is the exit status of the last command executed
30# in the script (previous to the exit)."
31
Note: See TracBrowser for help on using the repository browser.