diff options
author | Lieuwe Rooijakkers <lieuwerooijakkers@gmail.com> | 2024-08-18 17:56:56 +0200 |
---|---|---|
committer | Lieuwe Rooijakkers <lieuwerooijakkers@gmail.com> | 2024-08-18 17:56:56 +0200 |
commit | c08eb8f347ee9a40594bdab64447baae10f39168 (patch) | |
tree | 1d640babe62642fac7df406b49ef42714220d909 | |
parent | d6bfd62838771ed99de20dcc160f232eec67367e (diff) |
boom: improve flags
-rw-r--r-- | src/boom.c | 19 |
1 files changed, 14 insertions, 5 deletions
@@ -21,9 +21,10 @@ static void usage(FILE *f) { fprintf(f, "Gebruik: boom [-thV] [STARTPUNTEN]...\n" "\n" - "TODO\n" + "Geef inhoud van mapjes weer in een boom-achtig formaat.\n" "\n" - " -t Bestandtypes om weer te geven, kan zijn b(estand), m(apje) of een combinatie gescheiden door komma's\n" + " -a Alle bestanden worden weergegeven, ookal beginnen ze met een puntje\n" + " -m Geef alleen mapjes weer\n" " -d Maximale diepte\n" " -o Omvang van n beten (+, - voor meer of minder)\n" " -h Toon deze hulptekst\n" @@ -33,16 +34,24 @@ static void usage(FILE *f) { // Returns pointer to argument array containing the starting points static char** parse_options(int argc, char **argv) { int opt; - while ((opt = getopt(argc, argv, "adhV")) != -1) { + while ((opt = getopt(argc, argv, "amd:hV")) != -1) { switch (opt) { case 'a': show_hidden = true; break; - case 'd': + case 'm': dirs_only = true; break; + case 'd': + max_depth = atoi(optarg); + if (max_depth <= 0) { + fprintf(stderr, "boom: maximale diepte moet groter zijn dan 0\n"); + exit(1); + } + break; + case 'h': usage(stdout); exit(0); @@ -77,7 +86,7 @@ static int f(const char *fpath, const struct stat *, int typeflag, struct FTW *f } // check max depth - if (max_depth >= 0 && level >= max_depth) return 0; + if (max_depth >= 0 && level >= (max_depth + 1)) return 0; const char *fname = basename(fpath); |