shithub: riscv

ref: f35d5ee5b036b7b4fa59b1839f52fca15b7f99f9
dir: /rc/bin/ape/yacc/

View raw version
#!/bin/rc

flagfmt='d,l,t,v,b stem'
args='grammar'

if(! ifs=() eval `{aux/getflags $*} || ! ~ $#* 1){
	aux/usage
	exit usage
}

y=-S
if (~ $#flagb 1) y=($y -s $flagb)
if (~ $#flagd 1) y=($y -d)
if (~ $#flagt 1) y=($y -D2)
if (~ $#flagv 1) y=($y -v)
exec /$cputype/bin/yacc $y $*