Wed Oct 21 11:20:17 EDT 2020/home/rj/shcov/new/./foo.sh
Coverage: 50 % Covered: 4   Comment Lines: 4
Executable: 32 % Not Covered: 4   Blank Lines: 10
Comments: 16 % Executable : 8   Total Lines: 25

 

  1
#!/bin/bash
  2
  3
# foo.sh -- top level bash shell experiment test file
  4
15
. ./traps.sh
  6
17
echo START
  8
19
echo entering foo PID = $$
  10
  11
clown()
  12
{
013
    echo entering clown
  14
    #KNUCKLEHEAD
015
    echo leaving clown
  16
}
  17
  18
      #  CLARABELLE  # trailing comment
  19
320
./bar.sh
  21
022
clown
  23
024
echo DONE
  25