File: comprev

package info (click to toggle)
lsof 4.93.2%2Bdfsg-1.1
  • links: PTS
  • area: main
  • in suites: bullseye
  • size: 5,936 kB
  • sloc: ansic: 75,924; sh: 12,859; makefile: 1,686; perl: 1,146; awk: 214
file content (11 lines) | stat: -rwxr-xr-x 164 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
#
# comprev -- compare revisions

n=1
while test 1 -eq 1
do
  np=`expr $n + 1`
  rcsdiff -r1.$n -r1.$np Configure | grep make.conf
  n=`expr $n + 1`
done