summaryrefslogtreecommitdiffstats
path: root/ham/rtl_433/doinst.sh
blob: 2dd0059991317b16872cc2a15d16fbbdadc296f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
config() {
  NEW="$1"
  OLD="$(dirname $NEW)/$(basename $NEW .new)"
  if [ ! -r $OLD ]; then
    mv $NEW $OLD
  elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
    rm $NEW
  fi
}
shopt -s nullglob
for i in etc/rtl_433/*.conf.new; do config "${i}"; done