mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-27 07:43:07 +02:00
8 lines
77 B
Bash
Executable File
8 lines
77 B
Bash
Executable File
#! /bin/sh
|
|
|
|
if [ "$1" = '-y' ]; then
|
|
shift
|
|
fi
|
|
|
|
exec /usr/bin/yacc ${1+"$@"}
|