initial import of scripts to mirror + sym-link 3GPP specs

This commit is contained in:
Harald Welte 2016-12-16 20:35:28 +01:00
commit 809d82956f
2 changed files with 40 additions and 0 deletions

34
gen_links.sh Executable file
View File

@ -0,0 +1,34 @@
#!/bin/sh
# a rather simple script to recover the 3GPP spec number (if any) from the
# title page of the ETSI TS PDF and then create a symlink in the format
# $SPEC-$VERSIO.pdf
# Author: Harald Welte <laforge@gnumonks.org>
# source base directory containing the ETSI TS PDFs
SRCDIR=./www.etsi.org/deliver/etsi_ts
# directory from where to create all the symlinks
LINKDIR=./by_chapter
# ensure the symlink directory exists
[ -d $LINKDIR ] || mkdir $LINKDIR
# get a list of all pdf files
PDFS=`find $SRCDIR -name "*.pdf"`
for f in $PDFS; do
# check if it contains a line with suitable prefix
RES=`pdfgrep -m 1 '\(3GPP TS' $f`
if [ $? -eq 0 ]; then
# extract the filename with spec number + version name (e.g. 44.008-4.0.0.pdf)
LINK=`echo $RES | awk '/\(3GPP TS ([0-9]+\.[0-9]+) version (\w+)/ {printf "%s-%s.pdf", $3, $5}'`
if [ "x$LINK" != "x" ]; then
echo $LINK
# crate the actual symlink
ln -sf ../$f "$LINKDIR/$LINK"
fi
fi
done

6
mirror.sh Executable file
View File

@ -0,0 +1,6 @@
#!/bin/sh
# a rather simple script to recursively dowload all of the ETSI technical
# specifications in PDF format
wget -c -r -np http://www.etsi.org/deliver/etsi_ts/