File: install-lss.sh

package info (click to toggle)
lynx 2.8.9dev11-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 16,556 kB
  • ctags: 12,873
  • sloc: ansic: 133,772; sh: 3,560; makefile: 1,139; perl: 995; yacc: 743
file content (38 lines) | stat: -rwxr-xr-x 802 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/bin/sh
# $LynxId: install-lss.sh,v 1.1 2007/05/13 22:15:29 tom Exp $
# install lynx.lss, ensuring the old config-file is saved to a backup file.
#
# $1 = install program
# $2 = file to install
# $3 = where to install it
PRG="$1"
SRC=$2
DST=$3

if test -f "$DST" ; then
	# See if we have saved this information before
	if cmp -s $SRC $DST
	then
		echo "... installed $DST would not be changed"
	else
		NUM=1
		while test -f ${DST}-${NUM}
		do
			if cmp -s $SRC ${DST}-${NUM}
			then
				break
			fi
			NUM=`expr $NUM + 1`
		done
		if test ! -f ${DST}-${NUM}
		then
			echo "... saving old config as ${DST}-${NUM}"
			mv $DST ${DST}-${NUM} || exit 1
		fi
		echo "** installing $SRC as $DST"
		eval $PRG $SRC $DST || exit 1
	fi
else
	echo "** installing $SRC as $DST"
	eval $PRG $SRC $DST || exit 1
fi