croptool

Image cropping tool
git clone git://lumidify.org/croptool.git (fast, but not encrypted)
git clone https://lumidify.org/croptool.git (encrypted, but very slow)
git clone git://4kcetb7mo7hj6grozzybxtotsub5bempzo4lirzc3437amof2c2impyd.onion/croptool.git (over tor)
Log | Files | Refs | README | LICENSE

commit de1ffb4e697a3e88ed1768577805177f853ba480
parent c49f7928026cab6699ef7988a2dabf62b7fc6c40
Author: lumidify <nobody@lumidify.org>
Date:   Wed, 10 Dec 2025 23:52:50 +0100

Fix usage message in selectool

Diffstat:
MTODO | 2++
Mselectool.1 | 1+
Mselectool.c | 2+-
3 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/TODO b/TODO @@ -11,3 +11,5 @@ * Key for allowing/disallowing rectangle out of image bounds * Read selections from file - to modify again later * Better navigation - jump to beginning, etc. +* Some sort of 'multiselectool' that makes it easy to sort + images into different directories. diff --git a/selectool.1 b/selectool.1 @@ -127,6 +127,7 @@ That is left as an exercise to the reader (hint: just don't have filenames containing quotes). .Sh SEE ALSO .Xr croptool 1 , +.Xr mv 1 , .Xr rm 1 , .Xr foremost 8 , .Xr photorec 8 diff --git a/selectool.c b/selectool.c @@ -77,7 +77,7 @@ static void print_cmd(const char *filename, int dry_run); static void usage(void) { - fprintf(stderr, "USAGE: deletetool [-mrs] [-f format] " + fprintf(stderr, "USAGE: selectool [-ms] [-f format] " "[-w width] [-c color] " "[-z size] file ...\n"); }