2015-04-24 11:10:17 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
echo "CONCORDIA INDEXER: Decompressing test file"
|
|
|
|
|
|
|
|
xz -dk ../prod/resources/text-files/jrc_smaller.txt.xz
|
|
|
|
|
|
|
|
echo "CONCORDIA INDEXER: Running Concordia"
|
|
|
|
|
|
|
|
rm ../prod/resources/temp/*
|
|
|
|
|
|
|
|
echo "CONCORDIA INDEXER: reading from file"
|
2015-10-16 22:14:11 +02:00
|
|
|
../build/concordia-console/concordia-console -i ../prod/resources/temp/ -c ../prod/resources/concordia-config/concordia.cfg -r ../prod/resources/text-files/jrc_smaller.txt
|
2015-04-24 11:10:17 +02:00
|
|
|
|
|
|
|
|