Files
mongo/dist/s_getopt
Keith Bostic 4b3887fa9c Add a local version of getopt for the utilities program, plus a script
to check if we mess it up.

--HG--
rename : src/utilities/getopt.c => src/utilities/util_getopt.c
2011-08-31 22:02:36 +00:00

7 lines
150 B
Bash

#! /bin/sh
# Complain if someone breaks getopt usage in the wt utility.
egrep -w 'opterr|optind|optopt|optreset|optarg' ../src/utilities/*.c
exit 0