Tools in the Common Module
Contents
dk.netarkivet.common.tools.ArcMerge
This tool takes as input several arcfiles, and inserts all the records of the input arcfiles into a single arcfile. This arcfile is currently dumped to stdout, but can of course be redirected to a file.
Usage
export CLASSPATH=/path/to/installdir/lib/dk.netarkivet.common.jar java dk.netarkivet.common.tools.ArcMerge arcfile1.arc arcfile2.arc > resulting.arc
dk.netarkivet.common.tools.ArcWrap
This tool takes an input file, an URI for this file, and a mime-type for this file, and creates an ARC-file with only one ARCRecord, which has the input file as contents, and with the given mimetype and URI. The ARCfile is written to stdout, but can of course be redirected to a file.
usage
export CLASSPATH=/path/to/installdir/lib/dk.netarkivet.common.jar java dk.netarkivet.common.tools.ArcWrap input_file uri mime-type > myarchive.arc
dk.netarkivet.common.tools.ExtractCDX
This tool generates CDX-entries for all ARC-records in the given ARC-files, and prints the CDX'es to stdout, but can of course be redirected to a file like we show below.
usage
export CLASSPATH=/path/to/installdir/lib/dk.netarkivet.common.jar java dk.netarkivet.common.tools.ExtractCDX [arcfile]+ > output.cdx
dk.netarkivet.common.tools.WriteBytesToFile
This tool makes large files primarily for testing purposes. The tool needs two arguments, the number of bytes that must be written (nbytes), and the name of the file to write to. The number of bytes must be > chunksize (currently 10000000), otherwise 0 bytes will be written to the file.
usage
export CLASSPATH=/path/to/installdir/lib/dk.netarkivet.common.jar java dk.netarkivet.common.tools.WriteBytesToFile nbytes filename