FWIW: Here's a shell script (notice the date 1988) that I've used
to split files in half.
--------------------------------------------
:
# @(#) spl - v1.0 - 02/24/88 - Splits a file in half.
# Usage: spl filename
file=$1
set `wc $1`
half=`expr $1 \/ 2 + 1`
split -$half $file $file
----------------------------------------------
On Friday 29 July 2005 11:01, you wrote:
> I need to cut a users mail spool file down that now is 2.0G and mail box
> isn't working.
>
> I backed up her mail spool and emptied it out and now need a way to
> edit/cut it down - emacs won't open it because it exhausts the buffer.
>
> What's a simple command to say split the thing in half?
---------------------------------------------------
PLUG-discuss mailing list -
PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change you mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss