Crossfire Mailing List Archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: adding maps
- To: crossfire (at) ifi.uio.no
- Subject: Re: adding maps
- From: Tero Jyri Michael Pelander <>
- Date: Wed, 31 Aug 1994 14:18:50 +0300
- In-Reply-To: <199408310126.AA04380@eden-valley> from "Rupert G. Goldie" at Aug 31, 94 04:26:01 am
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 \{\} \;