7 lines
77 B
Bash
Executable file
7 lines
77 B
Bash
Executable file
#! /bin/sh
|
|
|
|
if [ "$1" = '-y' ]; then
|
|
shift
|
|
fi
|
|
|
|
exec /usr/bin/yacc ${1+"$@"}
|