| * cat implementation for busybox |
| * Copyright (C) 2003 Manuel Novoa III <mjn3@codepoet.org> |
| * Licensed under GPLv2, see file License in this tarball for details. |
| /* BB_AUDIT SUSv3 compliant */ |
| /* http://www.opengroup.org/onlinepubs/007904975/utilities/cat.html */ |
| static char *const argv_dash[] = { "-", NULL }; |
| int retval = EXIT_SUCCESS; |
| if (!*argv) argv = (char**) &argv_dash; |
| f = fopen_or_warn_stdin(*argv); |
| off_t r = bb_copyfd_eof(fileno(f), STDOUT_FILENO); |
| int cat_main(int argc, char **argv) |
| getopt32(argc, argv, "u"); |