blob: e841b031e5ad3d1c3ccfdcd9cd2162fe72143c7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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
}
config etc/profile.d/lammps.sh.new
config etc/profile.d/lammps.csh.new
|