slackbuilds_ponce/ham/rtl_433/doinst.sh
pyllyukko 2ba7a42543
ham/rtl_433: Added (decode radio transmissions).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
2024-03-13 06:49:48 +07:00

11 lines
268 B
Bash

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