byacc
public domain Berkeley LALR Yacc parser generator
Install
- All systems
-
curl cmd.cat/byacc.sh
- Debian
-
apt-get install byacc - Ubuntu
-
apt-get install byacc -
Alpine
-
apk add byacc - Arch Linux
-
pacman -S byacc - Kali Linux
-
apt-get install byacc - CentOS
-
yum install byacc - Fedora
-
dnf install byacc - Windows (WSL2)
-
sudo apt-get updatesudo apt-get install byacc - OS X
-
brew install byacc - Raspbian
-
apt-get install byacc - Docker
-
docker run cmd.cat/byacc byaccpowered by Commando
byacc
public domain Berkeley LALR Yacc parser generator
This package provides a parser generator utility that reads a grammar specification from a file and generates an LR(1) parser for it. The parsers consist of a set of LALR(1) parsing tables and a driver routine written in the C programming language. It has a public domain license which includes the generated C.