Poul-Henning Kamp 8963028c59 Make the diagnostics a little more useful.
A word of wisdom, don't do this:

|	cd /usr/bin
|	for i in *
|	do
|		cp $i /tmp/a
|		gzip -9 < /tmp/a > $i
|	done

It will compress files with multiple links several times.  do it this way:

|	cd /usr/bin
|	for i in *
|	do
|		gunzip -f < $i > /tmp/a
|		gzip -9 < /tmp/a > $i
|	done
1994-10-22 11:55:16 +00:00
1994-10-06 00:48:55 +00:00
1994-10-22 09:53:33 +00:00
1994-10-16 20:39:52 +00:00
1994-10-22 02:37:24 +00:00
1994-10-19 11:15:30 +00:00
1994-10-22 09:55:43 +00:00
1994-09-11 20:01:03 +00:00
Description
freebsd kernel with SKQ
2 GiB
Languages
C 63.3%
C++ 23.3%
Roff 5.1%
Shell 2.9%
Makefile 1.5%
Other 3.4%