OpenSDE Framework (without history before r20070)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

81 lines
2.6 KiB

  1. /* ccat (counting cat)
  2. *
  3. * --- T2-COPYRIGHT-NOTE-BEGIN ---
  4. * This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  5. *
  6. * T2 SDE: misc/archive/ccat.c
  7. * Copyright (C) 2004 - 2006 The T2 SDE Project
  8. * Copyright (C) 1998 - 2003 Clifford Wolf
  9. *
  10. * More information can be found in the files COPYING and README.
  11. *
  12. * This program is free software; you can redistribute it and/or modify
  13. * it under the terms of the GNU General Public License as published by
  14. * the Free Software Foundation; version 2 of the License. A copy of the
  15. * GNU General Public License can be found in the file COPYING.
  16. * --- T2-COPYRIGHT-NOTE-END ---
  17. */
  18. #define VERSION "2000-06-15"
  19. #include <stdio.h>
  20. #include <string.h>
  21. #include <errno.h>
  22. int main(int argc) {
  23. char s1[]="................................"
  24. "................................";
  25. char buf[10240];
  26. int c,rc1,rc2;
  27. if (argc != 1) {
  28. fprintf(stderr,
  29. "ccat (counting cat) Version " VERSION "\n"
  30. "Copyright (C) 2000 Clifford Wolf, Thomas Baumgartner\n"
  31. "\n"
  32. " This program is free software; you can redistribute it and/or modify\n"
  33. " it under the terms of the GNU General Public License as published by\n"
  34. " the Free Software Foundation; either version 2 of the License, or\n"
  35. " (at your option) any later version.\n"
  36. "\n"
  37. " This program is distributed in the hope that it will be useful,\n"
  38. " but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
  39. " MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
  40. " GNU General Public License for more details.\n"
  41. "\n"
  42. " You should have received a copy of the GNU General Public License\n"
  43. " along with this program; if not, write to the Free Software\n"
  44. " Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
  45. "\n"
  46. "Usage: `ccat' reads from its stdin and writes to stdout. No command line\n"
  47. " arguments ar allowed. A status bar is printed to stderr.\n\n"
  48. ); fflush(stderr);
  49. return 1;
  50. }
  51. c=1024; rc1=rc2=0;
  52. while (1) {
  53. if (c%1024 == 0) {
  54. fprintf(stderr,"\r%6d0 MB [%s]\r%6d0 MB [",
  55. c/1024,s1,c/1024); fflush(stderr);
  56. }
  57. if ( (rc1=read(0,buf,10240)) <= 0 ) { rc2=rc1; break; }
  58. if (c%16 == 0) {
  59. fprintf(stderr,"X"); fflush(stderr);
  60. }
  61. if ( (rc2=write(1,buf,rc1)) != rc1 ) break;
  62. c++;
  63. }
  64. if (rc1 == -1) {
  65. fprintf(stderr,"\nRead ERROR: %s\n",strerror(errno));
  66. } else if (rc2 == -1) {
  67. fprintf(stderr,"\nWrite ERROR: %s\n",strerror(errno));
  68. } else if (rc2 != rc1) {
  69. fprintf(stderr,"\nWrite ERROR: Only %d of %d bytes "
  70. "in the last block has been written.\n",rc2,rc1);
  71. } else
  72. fprintf(stderr,"\n");
  73. return 0;
  74. }