2017-07-14 21:46:24 +00:00
|
|
|
tree-sitter-bash
|
|
|
|
================
|
|
|
|
|
|
|
|
[![Build Status](https://travis-ci.org/tree-sitter/tree-sitter-bash.svg?branch=master)](https://travis-ci.org/tree-sitter/tree-sitter-bash)
|
2018-05-24 17:09:19 +00:00
|
|
|
[![Build status](https://ci.appveyor.com/api/projects/status/9mbap95nldligssx/branch/master?svg=true)](https://ci.appveyor.com/project/maxbrunsfeld/tree-sitter-bash/branch/master)
|
2017-07-14 21:46:24 +00:00
|
|
|
|
|
|
|
Bash grammar for [tree-sitter](https://github.com/tree-sitter/tree-sitter).
|
|
|
|
|
2018-08-06 17:03:34 +00:00
|
|
|
### Development
|
|
|
|
|
|
|
|
Install the dependencies:
|
|
|
|
|
|
|
|
npm install
|
|
|
|
|
|
|
|
Build and run the tests:
|
|
|
|
|
|
|
|
npm run build
|
|
|
|
npm run test
|
|
|
|
|
|
|
|
Run the build and tests in watch mode:
|
|
|
|
|
|
|
|
npm run test:watch
|
|
|
|
|
2017-07-14 21:46:24 +00:00
|
|
|
#### References
|
|
|
|
|
|
|
|
* [Bash man page](http://man7.org/linux/man-pages/man1/bash.1.html#SHELL_GRAMMAR)
|
|
|
|
* [Shell command language specification](http://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html)
|
2018-05-24 18:46:57 +00:00
|
|
|
* [mvdnan/sh - a shell parser in go](https://github.com/mvdan/sh)
|