1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
#!/bin/sh
BEG="1917-12-31"
END="4095-12-31"
if test "${have_gdate_2039}" != "yes"; then
BEG="1970-12-31"
END="2037-12-31"
fi
if test "${have_gdate}" != "yes"; then
## SKIP in new automake
exit 77
fi
TOOLDIR="$(pwd)/../src"
DSEQ="${TOOLDIR}/dseq"
foo=`mktemp "/tmp/tmp.XXXXXXXXXX"`
bar=`mktemp "/tmp/tmp.XXXXXXXXXX"`
"${DSEQ}" "${BEG}" +1y "${END}" -f '%F %a' > "${foo}"
## strip month and dom from BEG and END in a way that works on dash
BEG=`echo ${BEG} | sed 's/-.*//'`
END=`echo ${END} | sed 's/-.*//'`
for y in `seq ${BEG} ${END}`; do
TZ=UTC LANG=C LC_ALL=C "${GDATE}" -d "${y}-12-31" '+%F %a'
done > "${bar}"
diff "${foo}" "${bar}"
rc=${?}
rm -f "${foo}" "${bar}"
exit ${rc}
|