http://git.etherboot.org
/
people
/
lynusvaz
/
gpxe.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
[scripting] Start on while loops
[people/lynusvaz/gpxe.git]
/
src
/
tests
/
while.gpxe
1
#!gpxe
2
set a 500
3
while $(${a} > 0)
4
set b 2
5
while $(${b} > 0)
6
echo ${a}, ${b}
7
set b $(${b} - 1)
8
done
9
set a $(${a} - 1)
10
done