aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Riehs <tristan.riehs@inria.fr>2026-07-12 12:46:00 +0200
committerTristan Riehs <tristan.riehs@inria.fr>2026-07-12 12:46:00 +0200
commit20a7e90d3fd6e2f248d70467f2714cc26b2212eb (patch)
tree4bbcb4dcb76761019093979b1309dde9038c658d
parent9b96a07785febfc854de9c8c582abd4c5ef767a2 (diff)
Add details for "ftag query"'s options
-rw-r--r--src/main.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 2228f2a..4d2a185 100644
--- a/src/main.c
+++ b/src/main.c
@@ -709,8 +709,11 @@ static void ftag_help(int, char **)
static void ftag_query_usage(void)
{
- /* TODO: add details for each option */
puts("Usage: ftag query [-a DATE] [-b DATE] [-h] [-t TAG]...");
+ puts("Options:");
+ puts(" -a DATE get files which dates are after DATE");
+ puts(" -b DATE get files which dates are before DATE");
+ puts(" -t TAG get files which have the tag TAG");
}
/* Debugging callback that prints all the output. */