diff options
author | sinanmohd <sinan@firemail.cc> | 2023-05-14 14:24:06 +0530 |
---|---|---|
committer | sinanmohd <sinan@firemail.cc> | 2023-05-14 14:24:06 +0530 |
commit | 2281f142880a26dd96c666bcc26ef5c30525d671 (patch) | |
tree | 1082661dea37ca6516eb4dae727f33d5469d07e5 /7.7 | |
parent | e2785e3c53695045eef4a6d435b488e6045a087a (diff) |
7.7: initial commit
Diffstat (limited to '7.7')
-rw-r--r-- | 7.7/Makefile | 11 | ||||
-rwxr-xr-x | 7.7/find | bin | 0 -> 17496 bytes | |||
-rw-r--r-- | 7.7/main.c | 77 |
3 files changed, 88 insertions, 0 deletions
diff --git a/7.7/Makefile b/7.7/Makefile new file mode 100644 index 0000000..6de9d25 --- /dev/null +++ b/7.7/Makefile @@ -0,0 +1,11 @@ +OBJECTS = main.c +CC = gcc +CFLAGS = -Wvla -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -fsanitize=address + +find : $(OBJECTS) + $(CC) $(CFLAGS) -o find $(OBJECTS) + +.PHONY : clean + +clean : + rm -f find diff --git a/7.7/find b/7.7/find Binary files differnew file mode 100755 index 0000000..4e0284f --- /dev/null +++ b/7.7/find diff --git a/7.7/main.c b/7.7/main.c new file mode 100644 index 0000000..ee944b4 --- /dev/null +++ b/7.7/main.c @@ -0,0 +1,77 @@ +#include <stdio.h> +#include <stdlib.h> +#include <string.h> +#include <stdbool.h> + +#define MAXLINE 1000 + +struct flags { + unsigned int except : 1; + unsigned int number : 1; +} flags; + +void fpat(FILE *fp, char *fname, char *pattern, struct flags flags); + +int main(int argc, char *argv[]) +{ + FILE *fp; + char pattern[MAXLINE]; + + while (--argc > 0 && **++argv == '-') { + while (*++*argv) { + switch (**argv) { + case 'x': + flags.except = true; + break; + case 'n': + flags.number = true; + break; + default: + fprintf(stderr, "find: %c: unknown flag\n", **argv); + exit(1); + break; + } + } + } + + if (argc >= 1) { + strncpy(pattern, *argv, MAXLINE); + } else { + fprintf(stderr, "Usage: find -xn pattern [file ...]\n"); + exit(1); + } + + if (argc == 1) { + fpat(stdin, "", pattern, flags); + fp = stdin; + } else { + while (--argc > 0) { + if (!(fp = fopen(*++argv, "r"))) { + fprintf(stderr, "find: can't open %s\n", *argv); + exit (1); + } else { + fpat(fp, *argv, pattern, flags); + fclose(fp); + } + } + } + + return 0; +} + +void fpat(FILE *fp, char *fname, char *pattern, struct flags flags) +{ + char line[MAXLINE]; + unsigned long lineno; + + lineno = 0; + while (fgets(line, MAXLINE, fp) != NULL) { + if (!!(strstr(line, pattern)) != flags.except) { + if (*fname) + printf("%s - ", fname); + if (flags.number) + printf("%5lu: ", ++lineno); + printf("%s", line); + } + } +} |