for loop support to grub script
This commit is contained in:
parent
f7867a01d3
commit
4e6a305be4
8 changed files with 135 additions and 1 deletions
27
tests/grub_script_for1.in
Normal file
27
tests/grub_script_for1.in
Normal file
|
@ -0,0 +1,27 @@
|
|||
#! @builddir@/grub-shell-tester
|
||||
|
||||
for x in one two 'three 3' "four 4" five six-6; do echo $x; done
|
||||
|
||||
for x in one two 'three 3' "four 4" five six-6
|
||||
do
|
||||
echo $x
|
||||
done
|
||||
|
||||
foo="1 2"
|
||||
for x in ab${foo}cd; do echo $x; done
|
||||
for x in "ab${foo}cd"; do echo $x; done
|
||||
|
||||
a="one two three"
|
||||
y=foo
|
||||
echo $y
|
||||
for y in $a; do
|
||||
echo $y
|
||||
done
|
||||
echo $y
|
||||
|
||||
|
||||
b="one two three"
|
||||
for z in $b; do
|
||||
echo $z
|
||||
done
|
||||
echo $z
|
Loading…
Add table
Add a link
Reference in a new issue