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-22 09:55:02 +00:00
1994-10-16 20:39:52 +00:00
1994-10-10 07:57:33 +00:00
1994-08-21 05:44:12 +00:00
1994-10-21 02:38:29 +00:00
1994-08-21 06:22:12 +00:00
1994-08-02 07:55:43 +00:00
1994-08-02 07:55:43 +00:00