Mercurial > hg > cc > cirrus_home
view bin/doC2S.sh @ 195:5f3c36e4fd6d default tip
add target test-core which (dangerously) avoids (we hope pointless) recompilation of all the plugins
author | Henry S. Thompson <ht@inf.ed.ac.uk> |
---|---|
date | Thu, 26 Sep 2024 17:55:56 +0100 |
parents | 4e1364b8c89a |
children |
line wrap: on
line source
#!/usr/bin/bash # Usage: doC2S.sh node task cc resdir workd i node=$1 task=$2 cc=$3 resdir=$4 workd=$5 i=$6 echo "> $node.$task: $i" rm -f $workd/cdx$i.db cdx2sql.py /beegfs/common_crawl/$cc/cdx/warc $i 2>$workd/cdx$i.errs | \ /lustre/home/dc007/hst/gentoo/usr/bin/sponge | \ sqlite3 $workd/cdx$i.db '.read results/cdx.sql' '.mode tabs' '.import /dev/stdin props' '.quit' 2>$workd/cdx$i.log echo "< $node.$task: $i";