File: legacy_sample.sh

package info (click to toggle)
python-bashate 2.1.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 380 kB
  • sloc: python: 743; sh: 202; makefile: 22
file content (40 lines) | stat: -rw-r--r-- 382 bytes parent folder | download | duplicates (6)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/bin/bash
# E020
function somefunction () {
	echo "E002: Has a tab"

  echo "E003: Not an indent with multiple of 4"
}

# E001
somefunction args  

# E010
for thing in things
do
    run_things thing
done

while 0
do
    run_thing
done

until 1
do
    run_thing
done

# E011
if [ 0 ]
then
    run_morethings
else
    run_otherthings
fi

# E012
cat <<EOH
this heredoc is bad

# E004