Small change to man page and help.

This commit is contained in:
Morgan Hardwood 2017-05-13 01:32:02 +02:00
parent 76bab70ccb
commit 3950bf80d3
2 changed files with 8 additions and 8 deletions

View File

@ -19,8 +19,8 @@ RawTherapee - An advanced, cross-platform program for developing raw photos.
rawtherapee <file> Start Image Editor with file. rawtherapee <file> Start Image Editor with file.
RawTherapee CLI RawTherapee CLI
rawtherapee-cli -c <dir>|<files> Convert files in batch with default parameters. rawtherapee-cli -c <dir>|<files> Convert files in batch using default parameters.
rawtherapee-cli <other options> -c <dir>|<files> Convert files in batch with your own settings. rawtherapee-cli <other options> -c <dir>|<files> Convert files in batch using your own settings.
rawtherapee-cli [-o <output>|-O <output>] [-q] [-a] [-s|-S] [-p <one.pp3> [-p <two.pp3> ...] ] [-d] [ -j[1-100] [-js<1-3>] | [-b<8|16>] [-t[z] | [-n]] ] [-Y] -c <input> rawtherapee-cli [-o <output>|-O <output>] [-q] [-a] [-s|-S] [-p <one.pp3> [-p <two.pp3> ...] ] [-d] [ -j[1-100] [-js<1-3>] | [-b<8|16>] [-t[z] | [-n]] ] [-Y] -c <input>
.SH OPTIONS .SH OPTIONS
-c <files> Specify one or more input files. -c <files> Specify one or more input files.
@ -29,9 +29,9 @@ RawTherapee - An advanced, cross-platform program for developing raw photos.
Saves output file alongside input file if -o is not specified. Saves output file alongside input file if -o is not specified.
-O <file>|<dir> Set output file or folder and copy pp3 file into it. -O <file>|<dir> Set output file or folder and copy pp3 file into it.
Saves output file alongside input file if -O is not specified. Saves output file alongside input file if -O is not specified.
-q Quick Start mode : do not load cached files to speedup start time. -q Quick-start mode. Does not load cached files to speedup start time.
-a Stands for 'all'. When specifying a directory, process all images specified in the -a Process all supported image file types when specifying a folder, even those
extension list from the options file, even those not actually selected. not currently selected in Preferences > File Browser > Parsed Extensions.
-s Use the existing sidecar file to build the processing parameters, -s Use the existing sidecar file to build the processing parameters,
e.g. for photo.raw there should be a photo.raw.pp3 file in the same folder. e.g. for photo.raw there should be a photo.raw.pp3 file in the same folder.
If the sidecar file does not exist, neutral values will be used. If the sidecar file does not exist, neutral values will be used.

View File

@ -559,9 +559,9 @@ int processLineParams( int argc, char **argv )
std::cout << " Saves output file alongside input file if -o is not specified." << std::endl; std::cout << " Saves output file alongside input file if -o is not specified." << std::endl;
std::cout << " -O <file>|<dir> Set output file or folder and copy " << pparamsExt << " file into it." << std::endl; std::cout << " -O <file>|<dir> Set output file or folder and copy " << pparamsExt << " file into it." << std::endl;
std::cout << " Saves output file alongside input file if -O is not specified." << std::endl; std::cout << " Saves output file alongside input file if -O is not specified." << std::endl;
std::cout << " -q Quick Start mode : do not load cached files to speedup start time." << std::endl; std::cout << " -q Quick-start mode. Does not load cached files to speedup start time." << std::endl;
std::cout << " -a Stands for 'all'. When specifying a directory, process all images specified in the" << std::endl; std::cout << " -a Process all supported image file types when specifying a folder, even those" << std::endl;
std::cout << " extension list from the options file, even those not actually selected" << std::endl; std::cout << " not currently selected in Preferences > File Browser > Parsed Extensions." << std::endl;
std::cout << " -s Use the existing sidecar file to build the processing parameters," << std::endl; std::cout << " -s Use the existing sidecar file to build the processing parameters," << std::endl;
std::cout << " e.g. for photo.raw there should be a photo.raw." << pparamsExt << " file in the same folder." << std::endl; std::cout << " e.g. for photo.raw there should be a photo.raw." << pparamsExt << " file in the same folder." << std::endl;
std::cout << " If the sidecar file does not exist, neutral values will be used." << std::endl; std::cout << " If the sidecar file does not exist, neutral values will be used." << std::endl;