2006-06-01 17:23:28 +00:00
## Here is an example for Bourne shell scripts.
2014-05-16 20:21:34 +00:00
2018-02-07 10:25:46 +00:00
syntax sh "\.sh$"
2015-02-18 20:01:30 +00:00
header "^#!.*((ba|da|k|pdk)?sh[-0-9_]*|openrc-run|runscript)"
2017-11-19 10:10:53 +00:00
magic "(POSIX|Bourne-Again) shell script.*text"
2015-04-18 11:35:23 +00:00
linter dash -n
2016-05-25 20:13:50 +00:00
comment "#"
2014-05-16 20:21:34 +00:00
2018-03-28 12:30:07 +00:00
# Function declarations.
color brightgreen "^[A-Za-z0-9_-]+\(\)"
# Keywords, symbols, and comparisons.
2014-02-26 21:33:47 +00:00
color green "\<(break|case|continue|do|done|elif|else|esac|exit|fi|for|function|if|in|read|return|select|shift|then|time|until|while)\>"
color green "\<(declare|eval|exec|export|let|local)\>"
color green "[{}():;|`$<>!=&\\]" "(\]|\[)"
2018-03-28 12:30:07 +00:00
color green "-(eq|ne|gt|lt|ge|le|ef|ot|nt)\>"
# Short and long options.
2018-03-30 08:45:04 +00:00
color brightmagenta "[[:blank:]]-[A-Za-z]\>" "[[:blank:]]--[A-Za-z-]+\>"
2018-03-28 12:30:07 +00:00
# Common commands.
2018-03-27 12:07:58 +00:00
color brightblue "\<(awk|cat|cd|ch(grp|mod|own)|cp|cut|echo|env|grep|head|install|ln|make|mkdir|mv|popd|printf|pushd|rm|rmdir|sed|set|sort|tail|tar|touch|umask|unset)\>"
2018-03-27 17:41:00 +00:00
color normal "[.-]tar\>"
2014-05-16 20:21:34 +00:00
2014-02-26 21:33:47 +00:00
# Basic variable names (no braces).
color brightred "\$[-0-9@*#?$!]" "\$[[:alpha:]_][[:alnum:]_]*"
# More complicated variable names; handles braces and replacements and arrays.
color brightred "\$\{[#!]?([-@*#?$!]|[0-9]+|[[:alpha:]_][[:alnum:]_]*)(\[([[:space:]]*[[:alnum:]_]+[[:space:]]*|@)\])?(([#%/]|:?[-=?+])[^}]*\}|\[|\})"
2014-05-16 20:21:34 +00:00
# Comments.
2006-06-08 12:49:57 +00:00
color cyan "(^|[[:space:]])#.*$"
2014-05-16 20:21:34 +00:00
# Strings.
2014-02-26 21:33:47 +00:00
color brightyellow ""(\\.|[^"])*"" "'(\\.|[^'])*'"
2014-05-16 20:21:34 +00:00
# Trailing whitespace.
2007-04-11 22:18:16 +00:00
color ,green "[[:space:]]+$"