tee.c 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * Mini tee implementation for busybox
  4. *
  5. * Copyright (C) 1999,2000,2001 by Matt Kraai <kraai@alumni.carnegiemellon.edu>
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  20. *
  21. */
  22. #include "busybox.h"
  23. #include <getopt.h>
  24. #include <stdio.h>
  25. int
  26. tee_main(int argc, char **argv)
  27. {
  28. char *mode = "w";
  29. int c, i, status = 0, nfiles = 0;
  30. FILE **files;
  31. while ((c = getopt(argc, argv, "a")) != EOF) {
  32. switch (c) {
  33. case 'a':
  34. mode = "a";
  35. break;
  36. default:
  37. show_usage();
  38. }
  39. }
  40. files = (FILE **)xmalloc(sizeof(FILE *) * (argc - optind + 1));
  41. files[nfiles++] = stdout;
  42. while (optind < argc) {
  43. if ((files[nfiles++] = fopen(argv[optind++], mode)) == NULL) {
  44. nfiles--;
  45. perror_msg("%s", argv[optind-1]);
  46. status = 1;
  47. }
  48. }
  49. while ((c = getchar()) != EOF)
  50. for (i = 0; i < nfiles; i++)
  51. putc(c, files[i]);
  52. return status;
  53. }
  54. /*
  55. Local Variables:
  56. c-file-style: "linux"
  57. c-basic-offset: 4
  58. tab-width: 4
  59. End:
  60. */