~ubuntu-branches/debian/sid/grub2/sid-200907171837

« back to all changes in this revision

Viewing changes to commands/cat.c

  • Committer: Bazaar Package Importer
  • Author(s): Otavio Salvador
  • Date: 2006-01-05 15:20:40 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060105152040-1ab076d4n3y2o5yf
Tags: 1.92-1
* New upstream release.
  - Add support for GPT partition table format.
  - Add a new command "play" to play an audio file on PC.
  - Add support for Linux/ADFS partition table format.
  - Add support for BASH-like scripting.
  - Add support for Apple HFS+ filesystems.
* 01_fix_grub-install.patch: Added. Fix grub-install to use
  /bin/grub-mkimage instead of /sbin/grub-mkimage. Closes: #338824
* Do not use CDBS tarball mode anymore. Closes: #344272  

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* cat.c - command to show the contents of a file  */
 
2
/*
 
3
 *  GRUB  --  GRand Unified Bootloader
 
4
 *  Copyright (C) 2003,2005  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 2 of the License, or
 
9
 *  (at your option) any later version.
 
10
 *
 
11
 *  This program 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, write to the Free Software
 
18
 *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
19
 */
 
20
 
 
21
#include <grub/normal.h>
 
22
#include <grub/dl.h>
 
23
#include <grub/arg.h>
 
24
#include <grub/file.h>
 
25
#include <grub/disk.h>
 
26
#include <grub/term.h>
 
27
#include <grub/misc.h>
 
28
#include <grub/gzio.h>
 
29
 
 
30
static grub_err_t
 
31
grub_cmd_cat (struct grub_arg_list *state __attribute__ ((unused)),
 
32
              int argc, char **args)
 
33
 
 
34
{
 
35
  grub_file_t file;
 
36
  char buf[GRUB_DISK_SECTOR_SIZE];
 
37
  grub_ssize_t size;
 
38
 
 
39
  if (argc != 1)
 
40
    return grub_error (GRUB_ERR_BAD_ARGUMENT, "file name required");
 
41
 
 
42
  file = grub_gzfile_open (args[0], 1);
 
43
  if (! file)
 
44
    return 0;
 
45
  
 
46
  while ((size = grub_file_read (file, buf, sizeof (buf))) > 0)
 
47
    {
 
48
      int i;
 
49
      
 
50
      for (i = 0; i < size; i++)
 
51
        {
 
52
          unsigned char c = buf[i];
 
53
          
 
54
          if (grub_isprint (c) || grub_isspace (c))
 
55
            grub_putchar (c);
 
56
          else
 
57
            {
 
58
              grub_setcolorstate (GRUB_TERM_COLOR_HIGHLIGHT);
 
59
              grub_printf ("<%x>", (int) c);
 
60
              grub_setcolorstate (GRUB_TERM_COLOR_STANDARD);
 
61
            }
 
62
        }
 
63
    }
 
64
 
 
65
  grub_putchar ('\n');
 
66
  grub_refresh ();
 
67
  grub_file_close (file);
 
68
  
 
69
  return 0;
 
70
}
 
71
 
 
72
 
 
73
GRUB_MOD_INIT(cat)
 
74
{
 
75
  (void) mod;                   /* To stop warning. */
 
76
  grub_register_command ("cat", grub_cmd_cat, GRUB_COMMAND_FLAG_BOTH,
 
77
                         "cat FILE", "Show the contents of a file.", 0);
 
78
}
 
79
 
 
80
GRUB_MOD_FINI(cat)
 
81
{
 
82
  grub_unregister_command ("cat");
 
83
}