Syntax

acrocmd has the following format:

acrocmd <command> --<parameter 1>=<value list 1> … --<parameter N>=<value list N>

Typographic conventions

Descriptions of commands and parameters use the following specific typographic conventions.

Parameter values

For some parameters, you should specify only one value. The description of such value is written in the singular. For example, if you see --arc=<archive name>, specify only one archive name in this parameter.

For some parameters, you can enter one or more values. The description of such values is written in the plural. For example, if you see --volume=<volume numbers>, you can specify a list of volume numbers in this parameter.

Separators

A parameter name and a value list can be separated by either an equals sign or a space character. Values in a value list can be separated by either a comma or a space character.

Examples:

acrocmd backup disk --disk=1,2
acrocmd backup disk --disk=1 2
acrocmd backup disk --disk 1,2
acrocmd backup disk --disk 1 2

Files with input parameters

acrocmd supports files with input parameters. The contents of an input parameter file are concatenated with the parameters in the command line.

For example, the command

acrocmd backup disk -f params.txt

where the content of the file params.txt is

--disk=1 --loc=e:\my_backups --arc=archive123

equals to

acrocmd backup disk --disk=1 --loc=e:\my_backups --arc=archive123