Merge pull request #423 from dl1mx/patch-1

Update DMRIDUpdate.sh
This commit is contained in:
Jonathan Naylor 2018-05-14 21:32:51 +01:00 committed by GitHub
commit fd8e2a1df1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -53,7 +53,7 @@ DMRIDPATH=/path/to/DMR/ID/file
DMRIDFILE=${DMRIDPATH}/DMRIds.dat
# DMR-MARC.net has discontinued real time access. Now they offer a nightly dump instead.
DATABASEURL='https://www.dmr-marc.net/static/users.csv'
DATABASEURL='https://radioid.net/static/users.csv'
#
# How many DMR ID files do you want backed up (0 = do not keep backups)
@ -95,7 +95,7 @@ then
fi
# Generate new file
curl ${DATABASEURL} 2>/dev/null | sed -e 's/\t//g' | awk -F"," '/,/{gsub(/ /, "", $2); printf "%s\t%s\t%s\n", $1, $2, $3}' | sed -e 's/\(.\) .*/\1/g' > ${DMRIDPATH}/DMRIds.tmp
curl -k ${DATABASEURL} 2>/dev/null | sed -e 's/\t//g' | awk -F"," '/,/{gsub(/ /, "", $2); printf "%s\t%s\t%s\n", $1, $2, $3}' | sed -e 's/\(.\) .*/\1/g' > ${DMRIDPATH}/DMRIds.tmp
NUMOFLINES=$(wc -l ${DMRIDPATH}/DMRIds.tmp | awk '{print $1}')
if [ $NUMOFLINES -gt 1 ]
then