photo-stats

statistics processor for the terminal
git clone https://git.clttr.info/photo-stats.git
Log (Feed) | Files | Refs (Tags) | README | LICENSE

commit 4f758269fd99d5b3717729f669d1e4082c2ce768
parent 79043ceef1a6dd29b261ef2dbce1e65fae632873
Author: René Wagner <rwagner@rw-net.de>
Date:   Fri, 14 Aug 2020 09:00:11 +0200

update help and README.mde

Diffstat:
MREADME.md | 1+
Mphosta.pl | 7+++++--
2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md @@ -42,6 +42,7 @@ The stats are available as grouped counts by - all time total - by year - by month +- by week of year ## FAQ - I have my images on a network share, how can i include them into the stats? diff --git a/phosta.pl b/phosta.pl @@ -154,7 +154,10 @@ sub main::HELP_MESSAGE say 'options:'; say ' -p <folder> : populate database from the files in the specified folder'; say ' -c : clear the database before populating with data from the folder'; - say ' -g : group by time range: year, month, week of year or total (no time range grouping), defaults to total'; - say ' -s : specify the information you want to select: focallength, iso, aperture, exposuretime, maker/model or photos, defaults to photos'; + say ' -g : group by time range, defaults to total (which means no grouping by time range)'; + say ' allowed values: year, month, week'; + say ' -s : specify the information you want to select, defaults to none (just show number of images)'; + say ' allowed values: maker, model, lens, aperture, exposuretime, iso, focallength, focallength35mm'; + say ' multiple fields should be listed comma-separated'; say ' --help : show this help'; }