From 8003c73edfb067a2e0303ebaabbdcca6b8f82b01 Mon Sep 17 00:00:00 2001 From: Managor <42655600+Managor@users.noreply.github.com> Date: Fri, 18 Sep 2026 01:34:21 +0300 Subject: [PATCH] ufraw-batch: use the syntax for multi-file input (#24071) --- pages/common/ufraw-batch.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pages/common/ufraw-batch.md b/pages/common/ufraw-batch.md index fad2207aef..9145ced5f2 100644 --- a/pages/common/ufraw-batch.md +++ b/pages/common/ufraw-batch.md @@ -5,16 +5,16 @@ - Simply convert RAW files to JPEG: -`ufraw-batch --out-type=jpg {{input_file(s)}}` +`ufraw-batch --out-type=jpg {{path/to/file1 path/to/file2 ...}}` - Simply convert RAW files to PNG: -`ufraw-batch --out-type=png {{input_file(s)}}` +`ufraw-batch --out-type=png {{path/to/file1 path/to/file2 ...}}` - Extract the preview image from the raw file: -`ufraw-batch --embedded-image {{input_file(s)}}` +`ufraw-batch --embedded-image {{path/to/file1 path/to/file2 ...}}` - Save the file with size up to the given maximums MAX1 and MAX2: -`ufraw-batch --size=MAX1,MAX2 {{input_file(s)}}` +`ufraw-batch --size=MAX1,MAX2 {{path/to/file1 path/to/file2 ...}}`