cat.c 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /* cat.c - command to show the contents of a file */
  2. /*
  3. * GRUB -- GRand Unified Bootloader
  4. * Copyright (C) 2003,2005,2007,2008 Free Software Foundation, Inc.
  5. *
  6. * GRUB is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * GRUB is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with GRUB. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. #include <grub/dl.h>
  20. #include <grub/file.h>
  21. #include <grub/disk.h>
  22. #include <grub/term.h>
  23. #include <grub/misc.h>
  24. #include <grub/extcmd.h>
  25. #include <grub/i18n.h>
  26. GRUB_MOD_LICENSE ("GPLv3+");
  27. static const struct grub_arg_option options[] =
  28. {
  29. {"dos", -1, 0, N_("Accept DOS-style CR/NL line endings."), 0, 0},
  30. {0, 0, 0, 0, 0, 0}
  31. };
  32. static grub_err_t
  33. grub_cmd_cat (grub_extcmd_context_t ctxt, int argc, char **args)
  34. {
  35. struct grub_arg_list *state = ctxt->state;
  36. int dos = 0;
  37. grub_file_t file;
  38. char buf[GRUB_DISK_SECTOR_SIZE];
  39. grub_ssize_t size;
  40. int key = 0;
  41. if (state[0].set)
  42. dos = 1;
  43. if (argc != 1)
  44. return grub_error (GRUB_ERR_BAD_ARGUMENT, "file name required");
  45. file = grub_file_open (args[0]);
  46. if (! file)
  47. return grub_errno;
  48. while ((size = grub_file_read (file, buf, sizeof (buf))) > 0
  49. && key != GRUB_TERM_ESC)
  50. {
  51. int i;
  52. for (i = 0; i < size; i++)
  53. {
  54. unsigned char c = buf[i];
  55. if ((grub_isprint (c) || grub_isspace (c)) && c != '\r')
  56. grub_printf ("%c", c);
  57. else if (dos && c == '\r' && i + 1 < size && buf[i + 1] == '\n')
  58. {
  59. grub_printf ("\n");
  60. i++;
  61. }
  62. else
  63. {
  64. grub_setcolorstate (GRUB_TERM_COLOR_HIGHLIGHT);
  65. grub_printf ("<%x>", (int) c);
  66. grub_setcolorstate (GRUB_TERM_COLOR_STANDARD);
  67. }
  68. }
  69. while (grub_checkkey () >= 0 &&
  70. (key = grub_getkey ()) != GRUB_TERM_ESC)
  71. ;
  72. }
  73. grub_xputs ("\n");
  74. grub_refresh ();
  75. grub_file_close (file);
  76. return 0;
  77. }
  78. static grub_extcmd_t cmd;
  79. GRUB_MOD_INIT(cat)
  80. {
  81. cmd = grub_register_extcmd ("cat", grub_cmd_cat, 0,
  82. N_("FILE"), N_("Show the contents of a file."),
  83. options);
  84. }
  85. GRUB_MOD_FINI(cat)
  86. {
  87. grub_unregister_extcmd (cmd);
  88. }