diff options
author | Matt Kraai | 2000-09-27 03:01:40 +0000 |
---|---|---|
committer | Matt Kraai | 2000-09-27 03:01:40 +0000 |
commit | e7c1af1e0dc1440483d7f195f15eb0df5cf70a04 (patch) | |
tree | 181768dee00666d560354b921d72a0f2217cb179 | |
parent | bbaef66b3f99213f06adf04df6b3e5e61278d75b (diff) | |
download | busybox-e7c1af1e0dc1440483d7f195f15eb0df5cf70a04.zip busybox-e7c1af1e0dc1440483d7f195f15eb0df5cf70a04.tar.gz |
Continue concatenating files even if we can't open one.
-rw-r--r-- | cat.c | 9 | ||||
-rw-r--r-- | coreutils/cat.c | 9 | ||||
-rw-r--r-- | utility.c | 3 |
3 files changed, 12 insertions, 9 deletions
@@ -26,20 +26,21 @@ extern int cat_main(int argc, char **argv) { + int status = EXIT_SUCCESS; + if (argc == 1) { print_file(stdin); - exit(TRUE); + return status; } while (--argc > 0) { if(!(strcmp(*++argv, "-"))) { print_file(stdin); } else if (print_file_by_name(*argv) == FALSE) { - perror(*argv); - exit(FALSE); + status = EXIT_FAILURE; } } - return(TRUE); + return status; } /* diff --git a/coreutils/cat.c b/coreutils/cat.c index 51f1d27..151ce4e 100644 --- a/coreutils/cat.c +++ b/coreutils/cat.c @@ -26,20 +26,21 @@ extern int cat_main(int argc, char **argv) { + int status = EXIT_SUCCESS; + if (argc == 1) { print_file(stdin); - exit(TRUE); + return status; } while (--argc > 0) { if(!(strcmp(*++argv, "-"))) { print_file(stdin); } else if (print_file_by_name(*argv) == FALSE) { - perror(*argv); - exit(FALSE); + status = EXIT_FAILURE; } } - return(TRUE); + return status; } /* @@ -1636,12 +1636,13 @@ extern int print_file_by_name(char *filename) FILE *file; file = fopen(filename, "r"); if (file == NULL) { + errorMsg("%s: %s\n", filename, strerror(errno)); return FALSE; } print_file(file); return TRUE; } -#endif /* BB_CAT || BB_LSMOD */ +#endif /* BB_CAT */ #if defined BB_ECHO || defined BB_TR char process_escape_sequence(char **ptr) |