Subject: cksum listing also?
To: None <current-users@sun-lamp.cs.berkeley.edu>
From: None <cagney@highland.oz.au>
List: current-users
Date: 05/15/1994 17:16:21
``Dear netbsd-current archive maintainers'',

Could there be generated (as part of the weekly processing) a set
of files each containing a cksum listing of a major part of the NetBSD -
current source tree.

Having this available would greatly simplify the task (for those without
`sup' and an level IP connection) of comparing a local source tree with that
found on sun-lamp.

Any other solutions to this problem (comparing source trees with out `sup'
and/or IP) would also be appreciated.

				regards Andrew


----

Something like (ignoring syntax errors:

	cd /usr/src
	for f in *
	do
		find $f -name CVS -prune -o -type f -print | 
			xargs cksum |
			gzip -9 > /some/where/in/the/ftp/area/$f.cksum.gz
	done

------------------------------------------------------------------------------