2010-05-11 15:01:36 +02:00
|
|
|
config() {
|
|
|
|
NEW="$1"
|
2011-07-24 23:23:02 +02:00
|
|
|
OLD="$(dirname $NEW)/$(basename $NEW .new)"
|
2010-05-11 15:01:36 +02:00
|
|
|
# If there's no config file by that name, mv it over:
|
|
|
|
if [ ! -r $OLD ]; then
|
|
|
|
mv $NEW $OLD
|
2011-07-24 23:23:02 +02:00
|
|
|
elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
|
2010-05-11 15:01:36 +02:00
|
|
|
# toss the redundant copy
|
|
|
|
rm $NEW
|
|
|
|
fi
|
|
|
|
# Otherwise, we leave the .new copy for the admin to consider...
|
|
|
|
}
|
|
|
|
|
2011-02-06 19:38:03 +01:00
|
|
|
config etc/xdg/surfraw/conf.new
|
|
|
|
config etc/xdg/surfraw/bookmarks.new
|
2010-05-11 15:01:36 +02:00
|
|
|
|