blob: f42fcb4823cbd394c9ba4ba0ad23401d22be00c7 (
plain)
1
2
3
4
5
6
7
|
#!/bin/sh
if [ ! -e usr/man/whatis ]; then
mv usr/man/whatis.sample usr/man/whatis
elif [ "$(md5sum usr/man/whatis)" = "$(md5sum usr/man/whatis.sample)" ]; then
# toss the redundant copy
rm usr/man/whatis.sample
fi
|