commit f30d677eb66f263be5a5f45d4e922b5b1e1f4b3c
parent a1160d2e3c624e72b56e2aa711722d2177a33240
Author: René Wagner <rwagner@rw-net.de>
Date: Sat, 2 May 2020 16:28:06 +0200
update README.md for more info
update links to sr.ht
Diffstat:
5 files changed, 34 insertions(+), 20 deletions(-)
diff --git a/README.md b/README.md
@@ -1,5 +1,5 @@
# About
-This rather small scripts written in [Perl](https://clltr.info/perl) provide useful function for file management for photographers.
+This rather small scripts written in [Perl](https://clltr.info/perl) provide useful function for managing (raw and output) files for photographers.
# Prerequisites
@@ -17,30 +17,44 @@ The following perl modules are required for running the scripts.
- File::Spec::Functions
# usage
-All scripts are commandline / shell tools which should run on *n*x and Windows when the prerequistes are met.
+All scripts are commandline / shell tools which should run on \*n\*x and Windows when the prerequistes are met.
-To run a script, open a shell and invoke `perl script.pl`, on most systems it should be sufficient to just invoke `script.pl`.
+To run a script, open a shell/commandline and invoke `perl script.pl`, on most systems it should be sufficient to just invoke `script.pl`.
-For information about parameters and usage call `script.pl --help`
-
-# generic scripts
-
-## jpeg divider
-Filename: `jpegdivider.pl`
-
-Moves all jpeg files (suffixes .jpg and .jpeg) in a folder to the subfolder JPEG.
+For information about parameters and usage call `script.pl --help`.
# ART helper scripts
-Helper scripts to manage sidecar files of [ART](https://clttr.info/art).
+Helper scripts to manage files which where handled by [ART](https://clttr.info/art).
## file mover
Filename: `art_file_mover.pl`
Moves all already converted raw files and their corresponding jpegs to a given folder.
+# generic scripts
+
+## jpeg divider
+Filename: `jpegdivider.pl`
+
+Moves all jpeg files (suffixes .jpg and .jpeg) in a folder to the subfolder JPEG (or a given subfolder).
+
# Silkypix helper scripts
Helper scripts to manage the sidecar data files created by [Silkypix Developer Studio](https://clttr.info/silkypix).
+Silkypix usually uses a folder structure similar to this example:
+```
+base folder
+|_ RAW0001.DNG
+|_ RAW0002.DNG
+|_ JPEG
+ |_ RAW0001.jpg
+ |_ RAW0002.tif
+|_ SILKYPIX_DS
+ |_ RAW0001.DNG.10.spd
+ |_ RAW0002.DNG.10.spd
+ |_ RAW0003.DNG.10.spf
+```
+
## orphaned sidecar cleaner
Filename: `silkypix_orphaned_sidecar_cleaner.pl`
diff --git a/art_file_mover.pl b/art_file_mover.pl
@@ -1,7 +1,7 @@
#!/usr/bin/perl
# Copyright(c) René Wagner 2019-2020
-# published under BSD 3-Clause License - https://git.clttr.info/LICENSE
-# https://git.clttr.info/photo-helpers/
+# https://git.sr.ht/~rwa/photo-helpers
+# published under BSD 3-Clause License - https://git.sr.ht/~rwa/photo-helpers/tree/master/LICENSE
use warnings;
use strict;
diff --git a/jpegdivider.pl b/jpegdivider.pl
@@ -1,7 +1,7 @@
#!/usr/bin/perl
# Copyright(c) René Wagner 2019-2020
-# published under BSD 3-Clause License - https://git.clttr.info/LICENSE
-# https://git.clttr.info/photo-helpers/
+# https://git.sr.ht/~rwa/photo-helpers
+# published under BSD 3-Clause License - https://git.sr.ht/~rwa/photo-helpers/tree/master/LICENSE
use warnings;
use strict;
diff --git a/silkypix_multiversion_sidecar_cleaner.pl b/silkypix_multiversion_sidecar_cleaner.pl
@@ -1,7 +1,7 @@
#!/usr/bin/perl
# Copyright(c) René Wagner 2019-2020
-# published under BSD 3-Clause License - https://git.clttr.info/LICENSE
-# https://git.clttr.info/photo-helpers/
+# https://git.sr.ht/~rwa/photo-helpers
+# published under BSD 3-Clause License - https://git.sr.ht/~rwa/photo-helpers/tree/master/LICENSE
use warnings;
use strict;
diff --git a/silkypix_orphaned_sidecar_cleaner.pl b/silkypix_orphaned_sidecar_cleaner.pl
@@ -1,7 +1,7 @@
#!/usr/bin/perl
# Copyright(c) René Wagner 2019-2020
-# published under BSD 3-Clause License - https://git.clttr.info/LICENSE
-# https://git.clttr.info/photo-helpers/
+# https://git.sr.ht/~rwa/photo-helpers
+# published under BSD 3-Clause License - https://git.sr.ht/~rwa/photo-helpers/tree/master/LICENSE
use warnings;
use strict;