MMDVMHost-Dashboard/database/dbupdate.sh
SA7BNT c789880b6f
Update dbupdate.sh
Updated URL
2018-05-07 12:28:34 +02:00

10 lines
475 B
Bash
Executable file

#!/bin/bash
echo Downloading DMR-IDs from MARC-database
curl 'https://www.dmr-marc.net/static/users.csv' 2>/dev/null | sed -e 's/\t//g' | awk -F"," '/,/{gsub(/ /, "", $2); printf "%s;%s;%s\n", $1, $2, $3}' | sed -e 's/\(.\) .*/\1/g' > dmrids.dat
echo Removing IDs from local database
echo -e 'delete from callsign where 1;' | sqlite3 callsigns.db
echo inserting new ID-list into local database
echo -e '.separator ";" \n.import dmrids.dat callsign' | sqlite3 callsigns.db