1 /* cat.c - command to show the contents of a file */
3 * GRUB -- GRand Unified Bootloader
4 * Copyright (C) 2003,2005,2007,2008 Free Software Foundation, Inc.
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.
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.
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/>.
21 #include <grub/file.h>
22 #include <grub/disk.h>
23 #include <grub/term.h>
24 #include <grub/misc.h>
25 #include <grub/extcmd.h>
26 #include <grub/i18n.h>
27 #include <grub/charset.h>
29 GRUB_MOD_LICENSE ("GPLv3+");
31 static const struct grub_arg_option options
[] =
33 {"dos", -1, 0, N_("Accept DOS-style CR/NL line endings."), 0, 0},
38 grub_cmd_cat (grub_extcmd_context_t ctxt
, int argc
, char **args
)
40 struct grub_arg_list
*state
= ctxt
->state
;
43 unsigned char buf
[GRUB_DISK_SECTOR_SIZE
];
45 int key
= GRUB_TERM_NO_KEY
;
46 grub_uint32_t code
= 0;
48 unsigned char utbuf
[GRUB_MAX_UTF8_PER_CODEPOINT
+ 1];
57 return grub_error (GRUB_ERR_BAD_ARGUMENT
, N_("filename expected"));
59 file
= grub_file_open (args
[0]);
63 while ((size
= grub_file_read (file
, buf
, sizeof (buf
))) > 0
64 && key
!= GRUB_TERM_ESC
)
68 for (i
= 0; i
< size
; i
++)
70 utbuf
[utcount
++] = buf
[i
];
72 if (is_0d
&& buf
[i
] != '\n')
74 grub_setcolorstate (GRUB_TERM_COLOR_HIGHLIGHT
);
75 grub_printf ("<%x>", (int) '\r');
76 grub_setcolorstate (GRUB_TERM_COLOR_STANDARD
);
81 if (!grub_utf8_process (buf
[i
], &code
, &count
))
83 grub_setcolorstate (GRUB_TERM_COLOR_HIGHLIGHT
);
84 for (j
= 0; j
< utcount
- 1; j
++)
85 grub_printf ("<%x>", (unsigned int) utbuf
[j
]);
88 if (utcount
== 1 || !grub_utf8_process (buf
[i
], &code
, &count
))
90 grub_printf ("<%x>", (unsigned int) buf
[i
]);
94 grub_setcolorstate (GRUB_TERM_COLOR_STANDARD
);
97 grub_setcolorstate (GRUB_TERM_COLOR_STANDARD
);
103 if ((code
>= 0xa1 || grub_isprint (code
)
104 || grub_isspace (code
)) && code
!= '\r')
106 grub_printf ("%C", code
);
113 if (dos
&& code
== '\r')
122 grub_setcolorstate (GRUB_TERM_COLOR_HIGHLIGHT
);
123 for (j
= 0; j
< utcount
; j
++)
124 grub_printf ("<%x>", (unsigned int) utbuf
[j
]);
125 grub_setcolorstate (GRUB_TERM_COLOR_STANDARD
);
132 key
= grub_getkey_noblock ();
133 while (key
!= GRUB_TERM_ESC
&& key
!= GRUB_TERM_NO_KEY
);
138 grub_setcolorstate (GRUB_TERM_COLOR_HIGHLIGHT
);
139 grub_printf ("<%x>", (unsigned int) '\r');
140 grub_setcolorstate (GRUB_TERM_COLOR_STANDARD
);
143 grub_setcolorstate (GRUB_TERM_COLOR_HIGHLIGHT
);
144 for (j
= 0; j
< utcount
; j
++)
145 grub_printf ("<%x>", (unsigned int) utbuf
[j
]);
146 grub_setcolorstate (GRUB_TERM_COLOR_STANDARD
);
150 grub_file_close (file
);
155 static grub_extcmd_t cmd
;
159 cmd
= grub_register_extcmd ("cat", grub_cmd_cat
, 0,
160 N_("FILE"), N_("Show the contents of a file."),
166 grub_unregister_extcmd (cmd
);