File: grub_script_for1.in

package info (click to toggle)
grub2 2.02%2Bdfsg1-20
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 61,784 kB
  • sloc: ansic: 384,086; asm: 16,323; sh: 13,230; cpp: 1,994; makefile: 1,488; python: 1,458; sed: 423; lex: 393; yacc: 267; awk: 75; lisp: 50; perl: 31
file content (27 lines) | stat: -rw-r--r-- 387 bytes parent folder | download | duplicates (19)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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