Add script for checking Change Date

Check that if a file has a Change Date entry that the date is the
expected one.
This commit is contained in:
Johan Wikman 2019-06-25 09:23:29 +03:00
parent 2ab9aa9a94
commit 17643e842e

54
script/check-change-date Executable file
View File

@ -0,0 +1,54 @@
#!/bin/bash
#
# Copyright (c) 2016 MariaDB Corporation Ab
#
# Use of this software is governed by the Business Source License included
# in the LICENSE.TXT file and at www.mariadb.com/bsl11.
#
# Change Date: 2023-01-01
#
# On the date above, in accordance with the Business Source License, use
# of this software will be governed by version 2 or later of the General
# Public License.
#
function print_usage_and_exit
{
echo "check-change-date date"
echo
echo " date: The expected change date, e.g. 2023-01-01"
exit 1
}
function run
{
local date=$1
local files=`find . -type f`
for f in $files
do
fgrep -q "Change Date:" $f 2> /dev/null
if [ $? -eq 0 ]
then
fgrep -q "Change Date: $date" $f 2> /dev/null
if [ $? -ne 0 ]
then
echo "$f lacks expected Change Date."
fi
fi
done
}
function main
{
if [ $# -ne 1 ]
then
print_usage_and_exit
fi
run $1
}
main $*