diff options
author | Rory Bradford <roryrjb@gmail.com> | 2020-04-17 09:02:03 +0100 |
---|---|---|
committer | Rory Bradford <roryrjb@gmail.com> | 2020-04-17 09:02:03 +0100 |
commit | a0a256422adcfccf2869a27e7a1a20d672f06349 (patch) | |
tree | 304d296a5eb77d8a5a461311fbc13b99df60995d | |
parent | 11074e02de8d43697fc8328fdc1710fb33a5eee8 (diff) | |
download | rf-a0a256422adcfccf2869a27e7a1a20d672f06349.tar.gz |
Re-introduce optional substring matching
Signed-off-by: Rory Bradford <roryrjb@gmail.com>
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | rf.1 | 21 | ||||
-rw-r--r-- | rf.c | 53 |
3 files changed, 42 insertions, 34 deletions
diff --git a/Makefile b/Makefile index c407da0..e66c045 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ DEPS = config.h LIBS = INC = CFLAGS := ${CFLAGS} -CFLAGS += -ansi \ +CFLAGS += -std=c99 \ -Wpedantic \ -Wall \ -Werror=format-security \ diff --git a/rf.1 b/rf.1 index ee74e22..8d04fd6 100644 --- a/rf.1 +++ b/rf.1 @@ -5,30 +5,35 @@ rf \- a tiny and simple file finder .SH SYNOPSIS .SY rf -.OP \-lvSU +.OP \-lsvSU .OP pattern ... .SH DESCRIPTION .B rf -will find files or directories based on one or more glob patterns. +will find files or directories based on one or more glob (or optionally +substring) patterns. .SH OPTIONS .TP -.B \-v -Invert matches. -. -.TP .BI \-l count Limit to specified matches count. . .TP -.B \-U -Unlink matched file. Cannot be used with any other options. +.B \-s +Match using substrings instead of globs. +. +.TP +.B \-v +Invert matches. . .TP .BI \-S command Run shell command over each file. A %s will be replaced with the relative path to the current file. Cannot be used with any other options. +. +.TP +.B \-U +Unlink matched file. Cannot be used with any other options. .SH COPYRIGHT Copyright \(co 2020 Rory Bradford <roryrjb@gmail.com>. diff --git a/rf.c b/rf.c index 327a3f7..90452f0 100644 --- a/rf.c +++ b/rf.c @@ -18,6 +18,7 @@ extern char *__progname; struct switches { + int substring; int invert; int limit; int count; @@ -30,7 +31,7 @@ static void usage(char *error) { fprintf(stderr, "Error: %s\n\n", error); } - fprintf(stderr, "usage: %s [-lvSU] pattern ...\n", __progname); + fprintf(stderr, "usage: %s [-lsvSU] pattern ...\n", __progname); } static int is_child(char *dirname) { @@ -42,9 +43,7 @@ static int is_child(char *dirname) { } static int not_in_array(char **arr, char *dirname, size_t size) { - int i = 0; - - for (; i < size; i++) { + for (int i = 0; i < size; i++) { if (fnmatch(arr[i], dirname, 0) == 0) { return 0; } @@ -54,9 +53,7 @@ static int not_in_array(char **arr, char *dirname, size_t size) { } static int excluded_extension(char *filename) { - int i = 0; - - for (; i < ignored_extensions_size; i++) { + for (int i = 0; i < ignored_extensions_size; i++) { int res = fnmatch(ignored_extensions[i], filename, 0); if (res == 0) { @@ -70,12 +67,12 @@ static int excluded_extension(char *filename) { static void handle_result( char *path, struct switches *switches, struct dirent *entry) { int i, j, k = 0; - char cmd[MAXPATHLEN]; - memset(cmd, '\0', MAXPATHLEN); - char full_path[MAXPATHLEN]; + + memset(cmd, '\0', MAXPATHLEN); full_path[0] = '\0'; + strcat(full_path, path); strcat(full_path, "/"); strcat(full_path, entry->d_name); @@ -156,8 +153,14 @@ static int recurse_find(char **patterns, int *pattern_count, char *dirname, for (; p < *pattern_count; p++) { char *pattern = patterns[p]; - if (fnmatch(pattern, entry->d_name, 0) == 0) { - matched = switches->invert ? 0 : 1; + if (switches->substring) { + if (strstr(entry->d_name, pattern) != NULL) { + matched = switches->invert ? 0 : 1; + } + } else { + if (fnmatch(pattern, entry->d_name, 0) == 0) { + matched = switches->invert ? 0 : 1; + } } } @@ -190,6 +193,7 @@ static int recurse_find(char **patterns, int *pattern_count, char *dirname, int main(int argc, char **argv) { /* printing switches */ + int substring = 0; int invert = 0; int limit = 0; int printing = 0; @@ -203,12 +207,16 @@ int main(int argc, char **argv) { char *remainder; - while ((ch = getopt(argc, argv, "l:vS:U")) > -1) { + while ((ch = getopt(argc, argv, "l:svS:U")) > -1) { switch (ch) { case 'h': usage(NULL); exit(EXIT_SUCCESS); + case 's': + substring = 1; + break; + case 'v': invert = 1; break; @@ -244,31 +252,26 @@ int main(int argc, char **argv) { /* int operating = unlink; */ if (unlink == 1 && printing > 0) { - fprintf(stderr, "Cannot use -U with any of -lv.\n"); + fprintf(stderr, "Cannot use -U with any of -lsv.\n"); exit(EXIT_FAILURE); } else if (cmd != NULL && printing > 0) { - fprintf(stderr, "Cannot use -S with any of -lv.\n"); + fprintf(stderr, "Cannot use -S with any of -lsv.\n"); exit(EXIT_FAILURE); } if (optind < argc) { - while (optind < argc) { - optind++; - } - } - - if (optind > 1) { int i = 0; struct switches switches; - int pattern_count = optind - 1; - char **patterns = malloc(sizeof(char *) * optind); + int pattern_count = argc - optind; + char **patterns = malloc(sizeof(char *) * pattern_count); memset(patterns, '\0', optind); - for (; i < optind; i++) { - patterns[i] = argv[i + 1]; + while (optind < argc) { + patterns[i++] = argv[optind++]; } + switches.substring = substring; switches.invert = invert; switches.limit = limit; switches.count = count; |