NAME

report.files.pl - Clean up Typo3-based web site files.

SYNOPSIS

report.files.pl [options]

    Options:
	-base_url aURL
	-help
	-home_page aPageName
	-host aHostOrIP
	-port aPort
	-verbose #

All switches can be reduced to a single letter.

Exit value: 0 (no error) or 1 (error).

Sample code:

use WWW::Scraper::Typo3;

WWW::Scraper::Typo3 -> new
(
    url     => 'http://127.0.0.1/index.html',
    verbose => 1,
) -> run;

OPTIONS

-base_url aURL

The url to start with. A leading and trailing / is mandatory.

The default value is '/'.

This parameter is optional.

-help

Print help and exit.

-home_page aPageName

The home page name.

The default value is 'index.html'.

The parameter is optional.

-host aHostOrIP

The host name to use.

The default value is 127.0.0.1.

This parameter is optional.

-port aPort

The port number.

The default value is 80.

This parameter is optional.

-verbose #

Display more (1) or less (0) output.

The default value is 0.

This parameter is optional.

DESCRIPTION

report.files.pl - Clean up Typo3-based web site files.