Is there an existing POSIX sh grammar available or do I have to figure it out from the specification directly?
Note I\'m not so much interested in a pure sh
I've had multiple attempts at writing my own full blown Bash interpreters over the past year, and I've also reached at some point the same book appendix reference stated in the marked answer (#2), but it's not completely correct/updated (for example it doesn't define production rules using the 'coproc' reserved keyword and has a duplicate production rule definition for a redirection using '<&', might be more problems but those are the ones I've noticed).
http://ftp.gnu.org/gnu/bash/
The regex i used was :
(\{(\s+.*?)+\})\s+([;|])
It matches any line non greedily .*?
including spaces and new lines \s+
that are between curly braces, and specifically the last closing brace before a ;
or |
character. Then i just replaced the matched strings to \3
(e.g. the result of the third capturing group, being either ; or |).
Here's the grammar definition that I managed to extract at the time of posting https://pastebin.com/qpsK4TF6