CONFIGURE_AC_COPYRIGHT=/tmp/h5chkright_CONFIGURE_AC.$$  # configure.ac file Copyright notice
 
#! /bin/sh
#
# Copyright by The HDF Group.
# Copyright by the Board of Trustees of the University of Illinois.
# All rights reserved.
#
# This file is part of HDF5.  The full HDF5 copyright notice, including
# terms governing use, modification, and redistribution, is contained in
# the COPYING file, which can be found at the root of the source code
# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases.
# If you do not have access to either file, you may request a copy from
# help@hdfgroup.org.
# Check Copyright notice.
# Check that all the files have the proper copyright notice.
# It goes down directories recursively.
# Programmer: Albert Cheng
# Created Data: 2003/07/22
# Modification:
#   Rewrote most of it. Albert Cheng, 2005/10/10.
#       Changed source file headers for website changes.  Larry Knox, 2017/5/24.
# Setup
PROGNAME=$0
DIFF="diff"
INITFILE=.h5chkright.ini
EXCEPTIONS=/tmp/h5chkright.except.$$
tmpfile=/tmp/h5chkright_tmp.$$
EXCEPTIONDIRS="-name .git"  # at least skip .git directories.
EXTRACTEDFILE=/tmp/h5chkright.extracted.$$
VERBOSE=        # default no
FIXIT=          # default no
DIRS=.          # default current directory
NFAILEDFILES=0      # Number of failed files found.
NPASSEDFILES=0      # Number of passed files found.
NFIXEDFILES=0       # Number of files fixed.
NFIXFAILEDFILES=0   # Number of files fix failed.
NUMBEGINLINES=60    # Copyright notice should be located within the
            # this number of lines at the beginning of the file.
UICOPYRIGHTSTR="Copyright by the Board of Trustees of the University of Illinois"
THGCOPYRIGHTSTR="Copyright by The HDF Group."
PASSEDLOG=/tmp/h5chkright_passed.$$
SKIPPEDLOG=/tmp/h5chkright_skipped.$$
FAILEDLOG=/tmp/h5chkright_failed.$$
FIXEDLOG=/tmp/h5chkright_fixed.$$
FIXFAILEDLOG=/tmp/h5chkright_fixfailed.$$