All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jwat.tools.tasks.UnpackTaskCLI Maven / Gradle / Ivy

Go to download

JWAT-Tools uses the available JWAT libraries to make high level tasks available either from command-line or programmatically. Common tasks include: Test, Compress, Decompress, CDX, Arc2Warc. More specialised tasks include: Changed, ContainerMD, Delete, Extract, Interval, PathIndex, Unpack, Headers2CDX.

There is a newer version: 0.7.1
Show newest version
package org.jwat.tools.tasks;

import com.antiaction.common.cli.CommandLine;

public class UnpackTaskCLI extends TaskCLI {

	public static final String commandName = "unpack";

	public static final String commandDescription = "unpack multifile GZip";

	@Override
	public void show_help() {
		System.out.println("Work in progress...");
	}

	@Override
	public void runtask(CommandLine cmdLine) {
		UnpackTask task = new UnpackTask();
		task.runtask(UnpackTaskCLIParser.parseArguments(cmdLine));
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy