2024-05-23 20:47:30 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
config() {
|
|
|
|
NEW="$1"
|
|
|
|
OLD="`dirname $NEW`/`basename $NEW .new`"
|
|
|
|
# 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
|
|
|
|
fi
|
|
|
|
# Otherwise, we leave the .new copy for the admin to consider...
|
|
|
|
}
|
|
|
|
|
|
|
|
config etc/profile.d/less.csh.new
|
|
|
|
config etc/profile.d/less.sh.new
|
|
|
|
|
2024-12-02 00:36:49 +01:00
|
|
|
# Link to a default lesspipe script. If you don't like this, relink to the
|
|
|
|
# other version, or install anything else you like as /usr/bin/lesspipe.sh.
|
|
|
|
# This package will leave it alone after that.
|
|
|
|
if [ ! -e usr/bin/lesspipe.sh ]; then
|
|
|
|
( cd usr/bin ; ln -sf lesspipe-volkerdi.sh lesspipe.sh )
|
|
|
|
fi
|