2 * GRUB -- GRand Unified Bootloader
3 * Copyright (C) 2009 Free Software Foundation, Inc.
5 * GRUB is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * GRUB is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with GRUB. If not, see <http://www.gnu.org/licenses/>.
20 #include <grub/i18n.h>
21 #include <grub/parser.h>
22 #include <grub/script_sh.h>
25 grub_normal_parse_line (char *line
,
26 grub_reader_getline_t getline
, void *getline_data
)
28 struct grub_script
*parsed_script
;
30 /* Parse the script. */
31 parsed_script
= grub_script_parse (line
, getline
, getline_data
);
35 /* Execute the command(s). */
36 grub_script_execute (parsed_script
);
38 /* The parsed script was executed, throw it away. */
39 grub_script_unref (parsed_script
);
45 static grub_command_t cmd_break
;
46 static grub_command_t cmd_continue
;
47 static grub_command_t cmd_shift
;
48 static grub_command_t cmd_setparams
;
49 static grub_command_t cmd_return
;
52 grub_script_init (void)
54 cmd_break
= grub_register_command ("break", grub_script_break
,
55 N_("[NUM]"), N_("Exit from loops"));
56 cmd_continue
= grub_register_command ("continue", grub_script_break
,
57 N_("[NUM]"), N_("Continue loops"));
58 cmd_shift
= grub_register_command ("shift", grub_script_shift
,
60 /* TRANSLATORS: Positional arguments are
61 arguments $0, $1, $2, ... */
62 N_("Shift positional parameters."));
63 cmd_setparams
= grub_register_command ("setparams", grub_script_setparams
,
65 N_("Set positional parameters."));
66 cmd_return
= grub_register_command ("return", grub_script_return
,
68 /* TRANSLATORS: It's a command description
69 and "Return" is a verb, not a noun. The
70 command in question is "return" and
71 has exactly the same semanics as bash
73 N_("Return from a function."));
77 grub_script_fini (void)
80 grub_unregister_command (cmd_break
);
84 grub_unregister_command (cmd_continue
);
88 grub_unregister_command (cmd_shift
);
92 grub_unregister_command (cmd_setparams
);
96 grub_unregister_command (cmd_return
);