dp.sh.Brushes.Bash = function()
{
	var funcs	=	'echo ssh mkdir ls list cd';

	var keywords =	'and or xor';

	this.regexList = [
		{ regex: new RegExp('#.*$', 'gm'),							css: 'comment' },			// one line comments
		{ regex: dp.sh.RegexLib.MultiLineCComments,					css: 'comment' },			// multiline comments
		{ regex: dp.sh.RegexLib.DoubleQuotedString,					css: 'string' },			// double quoted strings
		{ regex: dp.sh.RegexLib.SingleQuotedString,					css: 'string' },			// single quoted strings
		{ regex: new RegExp('\\$\\w+', 'g'),						css: 'vars' },				// variables
		{ regex: new RegExp(this.GetKeywords(funcs), 'gmi'),		css: 'func' },				// functions
		{ regex: new RegExp(this.GetKeywords(keywords), 'gm'),		css: 'keyword' }			// keyword
		];

	this.CssClass = 'dp-c';
}

dp.sh.Brushes.Bash.prototype	= new dp.sh.Highlighter();
dp.sh.Brushes.Bash.Aliases	= ['bash'];

