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/misc.h>
21 #include <grub/script_sh.h>
22 #include <grub/command.h>
23 #include <grub/i18n.h>
24 #include <grub/term.h>
26 GRUB_MOD_LICENSE ("GPLv3+");
29 grub_cmd_eval (grub_command_t cmd
__attribute__((__unused__
)),
30 int argc
, char *argv
[])
33 grub_size_t size
= argc
; /* +1 for final zero */
40 for (i
= 0; i
< argc
; i
++)
41 size
+= grub_strlen (argv
[i
]);
43 str
= p
= grub_malloc (size
);
47 for (i
= 0; i
< argc
; i
++)
49 p
= grub_stpcpy (p
, argv
[i
]);
54 ret
= grub_script_execute_sourcecode (str
);
59 static grub_command_t cmd
;
63 cmd
= grub_register_command ("eval", grub_cmd_eval
, N_("STRING ..."),
64 N_("Evaluate arguments as GRUB commands"));
69 grub_unregister_command (cmd
);