2018-03-01 21:30:24 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2019-12-10 20:39:14 +00:00
|
|
|
tree-sitter parse -q -t \
|
|
|
|
examples/**/*.sh \
|
|
|
|
examples/**/*.bash \
|
2018-03-29 16:54:05 +00:00
|
|
|
| egrep 'ERROR|MISSING' \
|
2019-12-10 20:39:14 +00:00
|
|
|
| tee >(cut -d' ' -f1 | sort > script/known-failures.txt)
|