diff options
| author | Tristan Riehs <tristan.riehs@inria.fr> | 2026-07-12 12:46:00 +0200 |
|---|---|---|
| committer | Tristan Riehs <tristan.riehs@inria.fr> | 2026-07-12 12:46:00 +0200 |
| commit | 20a7e90d3fd6e2f248d70467f2714cc26b2212eb (patch) | |
| tree | 4bbcb4dcb76761019093979b1309dde9038c658d | |
| parent | 9b96a07785febfc854de9c8c582abd4c5ef767a2 (diff) | |
Add details for "ftag query"'s options
| -rw-r--r-- | src/main.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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. */ |
