noscript/html5_events/archive_gen.sh

13 lines
331 B
Bash
Raw Normal View History

#!/bin/bash
2021-06-18 16:21:23 -06:00
# Copyright (C) 2005-2021 Giorgio Maone <https://maone.net>
#
# SPDX-License-Identifier: GPL-3.0-or-later
ARCHIVE=html5_events_archive.txt
if [ -f "$ARCHIVE" ]; then
echo >&2 "$ARCHIVE already exists!"
exit 1
fi
cat historical/*_events.txt | sort | uniq | egrep -v '^only$' > "$ARCHIVE"
echo "$ARCHIVE generated."