123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- #!/bin/sh
- setlock -n /tmp/getmail.lock && echo getmail isn\'t running
- # adsgsdg
- foo () {
- bar () {
- blilbi
- }
- case toto
- in a) hello # KNOWN INDENT BUG
- ;; b) hi # KNOWN INDENT BUG
- esac
- case $toto in
- a) echo 1;; b) echo 2;;
- c) echo 3;;
- esac
-
- case $as_nl`(ac_space=' '; set) 2>&1` in #(
- *${as_nl}ac_space=\ *)
- # `set' does not quote correctly, so add quotes: double-quote
- # substitution turns \\\\ into \\, and sed turns \\ into \.
- sed -n \
- "s/'/'\\\\''/g;
- s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=/\\1=''/p"
- ;; #(
- *)
- # `set' quotes correctly as required by POSIX, so do not add
- # quotes.
- sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
- ;;
- esac |
- cat # KNOWN INDENT BUG
-
- case toto in
- -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
- | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* \
- | --exec=* | --exe=* | --ex=*)
- exec_prefix=$ac_optarg ;;
- 5)
- hello ;;
- 3) hello $(adfad)
- echo esac ;; # KNOWN INDENT BUG
- 5) hello ;;
- 4) hello ;&
- 4) hello ;;&
- 5) hello ;;
- 5) hello ;;
- esac
-
- echo "'" wfgfe
- #!/bin/bash
- cat << EOF \
- | cat sadfsafd \
- sadfsafd "KNOWN INDENT BUG" \
- | tee -a bug.txt
- asdfsaf
- This is a test case for a bug in bash shell mode text highlighting
- EOF
- cat <<EOF1 <<EOF2 # KNOWN INDENT BUG
- help1
- EOF1
- help2
- EOF2
- }
- bar () {
- if [ $# == 0 ]; then
- while
- f # KNOWN INDENT BUG
- do
- bla;
- done
- echo "Highlighting is screwed up now"
- if [ 1 = 1 ]; then
- # adsgsdg
- echo "screwed up"
- fi
-
- $@ $? $#
-
- for f in *
- do
- sdfg
- done
-
- if swrgfef
- then blas
- else sdf
- fi
-
- fi
- }
|