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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
|
#!/usr/bin/env bash
function fn0() {
echo "fn0 $1"
}
fn1() # Other fn syntax
{
echo "fn1: Are we really executing this?"
}
function fn2 { # Yet another
echo fn2
}
function fn3
{ # Yet yet another
echo fn3
}
fn0
if [ $# -eq 1 ] ; then
fn1
fi
A=5
while [ $A -gt 0 ] ; do
A=$(($A - 1))
echo $A
done
# Comment
case $# in
1)
echo "1 args"
;;
(2)
echo "2 args" ;;# Comment
'sorry mister')
echo "This is very much dead code!"
;;
"SORRY")
echo "and more of that here"
;;
*)
echo "else args $#"
;;
esac
for idx in 1 \
2 \
3 \
4 ; do
echo "IDX: $idx"
done
cat <<EOF
here document
is here
EOF
. `dirname $0`/other.sh
if [ $# -eq 2 ] ; then
. `dirname $0`/other.sh 5
fi
if [ $# -gt 0 ]
then
exit $1
fi
A=awk '{print HEJ}'<<<$0
echo hoppsan
exec 3>&1
exec 4>&2
exec 2>>$1
exec 1>>$1
echo hopp
`dirname $0`/short-test.sh
# Issue #50: This breaks
cat<<EOF || echo "cat failed"
foo
bar
EOF
echo "From here on it do not work!"
`dirname $0`/sh-shebang.sh
# Echo to stderr
>&2 echo "I'm echoing to stderr via some illogical interface"
function some_test
{
test "${1}" == "--quiet" &&
{ quiet=${1} ; shift ; echo hej ; }
}
some_test --quiet
declare -r NIGHTLY_CODE_PROJECT_MASK=$(( 1 << 0 ))
declare -r NIGHTLY_TESTS_PROJECT_MASK=$(( 1 << 1 ))
declare -r NIGHTLY_DOCS_PROJECT_MASK=$(( 1 << 2 ))
echo $((
1 << 1))
echo $((
3 << 1
))
let "a = 1 << 3"
echo After
var=(c)
test ${#var[*]} -gt 2 -o \
"${var[$((${#var[*]} - 1))]}" != "c" ||
{
echo Some line
}
echo Something else
MESSAGE="some message"
USAGE="usage: some message
--some-option Does something
"
echo "After usage"
# Issue 116
SUB=30
max=$[ 1 << (32 - SUB) ]
echo "$max covered?"
# Issue 116
cat <<-!
Middle
!
echo "Covered?"
id="# ${work_runtime_error}."
echo afterid
source `dirname $0`/first-dir/a.sh
source `dirname $0`/first-dir/b.sh
source `dirname $0`/first-dir/c.sh
# Issue 152
# Test 1: Coverage works fine
printf "foo\nbar\n" | while read -r line
do
echo line: "$line"
done
# Test 2: Coverage missed for line with here-document
while read -r line
do
echo line: "$line"
done <<eof
baz
qux
eof
# Issue 154
booknames=`sqlplus -S -R 3 "$LOGON_STR" <<-EOF
select name from books;
exit;
EOF`
echo $booknames
|