Lines Matching refs:script
1 /* grub-script-check.c - check grub script file for syntax errors */
61 Checks GRUB script configuration file for syntax errors.\n\
65 -v, --verbose print the script as it is being processed\n\
82 struct grub_script *script = NULL;
184 script = grub_script_parse (input, get_config_line);
185 if (script)
187 grub_script_execute (script);
188 grub_script_free (script);
192 } while (script != 0);
196 if (found_input && script == 0)