Skip to content

Commit be608e0

Browse files
committed
Introduce short arguments for start/end index
1 parent 48bf9a3 commit be608e0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

splashsurf/src/reconstruction.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ pub struct ReconstructSubcommandArgs {
4040
#[arg(help_heading = ARGS_IO, long, value_parser = value_parser!(PathBuf))]
4141
pub output_dir: Option<PathBuf>,
4242
/// Index of the first input file to process when processing a sequence of files (default: lowest index of the sequence)
43-
#[arg(help_heading = ARGS_IO, long)]
43+
#[arg(help_heading = ARGS_IO, short = 's', long)]
4444
pub start_index: Option<usize>,
4545
/// Index of the last input file to process when processing a sequence of files (default: highest index of the sequence)
46-
#[arg(help_heading = ARGS_IO, long)]
46+
#[arg(help_heading = ARGS_IO, short = 'e', long)]
4747
pub end_index: Option<usize>,
4848

4949
/// The particle radius of the input data

0 commit comments

Comments
 (0)