#!/bin/sh config() { NEW="$1" OLD="`dirname $NEW`/`basename $NEW .new`" ORIGMD5="$2" # If there's no config file by that name, mv it over: if [ ! -r $OLD ]; then mv $NEW $OLD elif [ "`cat $OLD | md5sum`" = "`cat $NEW | md5sum`" ]; then # toss the redundant copy rm $NEW elif [ "$ORIGMD5" ] && [ "`cat $OLD | md5sum`" = "$ORIGMD5 -" ]; then mv $OLD $OLD.orig mv $NEW $OLD fi # Otherwise, we leave the .new copy for the admin to consider... } rmconfig() { CFG="$1" ORIGMD5="$2" if [ -r $CFG ] && [ "`cat $CFG | md5sum`" = "$ORIGMD5 -" ]; then mv $CFG $CFG.orig fi } rmconfig etc/asound.conf 94423887ed53ea0c17db9f9aeb2a40a6