O Grub2 permite recursos poderosos de script. if
, while
, function
, Etc significam a linguagem é muito poderosa (Turing completar?).
No entanto, não consigo descobrir como passar parâmetros no grub2.
grub> function hello {
> echo hello $1
> }
grub>
grub> hello world
hello
grub> # i'd expect to see 'hello world' here
grub> # instead in only get 'hello'
grub>
grub> # this works however
grub> 1=world
grub> hello
hello world
grub>
O Grub2 permite passar parâmetros para funções definidas pelo usuário?