#!/bin/sh

#little helper to detect dups in monitors database
grep -v '^#' "$1" |
    cut -f1,2,4,5 -d';' |
    sort -u|
    cut -f2 -d';'|
    uniq -c|
    grep -v 1
