...
Comment:
All rows starting with #
(hash) are considered a comment as comments and not executed.
Code Block |
---|
#This is a comment |
...
A value is assigned to a parameter by starting with the parameter name followed by a =
character (equals) and then the value.
Space characters are ignored, so that these two example lines have identical effect.
...
The \
(backslash), however, needs to be escaped as it is interpreted as escape character. So to use Windows paths in the configuration file, \\
(two double backslash characters) needs to be used for each backslash in Windows pathpaths.
Examples:
Code Block |
---|
# A Linux path Directory=/var/coreoftia/config # A Windows path Directory=C:\\test\\repository # AnA UNC path Directory=\\\\10.9.8.7\\ARCHIVE |