summaryrefslogtreecommitdiffstats
path: root/bin/update
blob: 79520153b764a65eb8dcea8413bce6e5ebb471d9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
set -e

if [ ! -d CVE ]; then
	echo "run in data subdirectory" >&2
	exit 1
fi

cd CVE
rm -f allitems.html
wget --quiet https://cve.mitre.org/data/downloads/allitems.html.gz
gunzip allitems.html.gz
../../bin/updatelist allitems.html ../DSA/list ../DTSA/list ../DLA/list list > list.new
mv -f list.new list

© 2014-2024 Faster IT GmbH | imprint | privacy policy