|
Key
This line was removed.
This word was removed. This word was added.
This line was added.
|
Changes (1)
View Page History
{code:language=bash}./recursive_pipe.sh ~/testdata ~/testdatareports "java -jar tika-app-1.0.jar"{code}
Since performance information is relevant, this is recorded in a CSV file in the REPORTDIR by the name of time.log
Since performance information is relevant, this is recorded in a CSV file in the REPORTDIR by the name of time.log
h3. Test dataset
The jhove2 project provides a fair dataset, which can be downloaded. Use this script to download the data.
{code:language=bash}#!/bin/bash
mkdir -p "$1"
FILEDIR="`cd $1; pwd`"
pushd "$FILEDIR" > /dev/null
wget -N -c "http://jhove.cvs.sourceforge.net/viewvc/jhove/jhove/examples/?view=tar"
if [ -e "index.html?view=tar" ]; then
tar -xvzf "index.html?view=tar"
else
echo "Archive not downloaded..."
fi
popd > /dev/null{code}