Crossfire Mailing List Archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: adding maps



Rupert G. Goldie wrote:
> "Petri.Heinila" wrote:
> > 	3. with "gzip `find root -type f -print`" compress
> > 	   the map files
> 
> I prefer (from the maps directory) "gzip -9 -r ." It's easier to remember
> and the -9 gets slightly better compression.

Better yet.  If you know how large blocks the disk uses you can do something
like this.  This example supposes that the minimum block size is 8kB.

find /crossfire/lib/maps -type f -size +8096c -exec gzip -9 \{\} \;