[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Large archive conversion problem



>    I am having trouble in converting large archives ( since 1990 ).
> 
>    All my emails are in .txt format  on SunOS cdnemailweb.Cadence.COM 5.8
>    Generic_108528-19 sun4u sparc SUNW,Ultra-80
> 
>    Here are my trials :
> 
>    1. mhonarc -add /usr1/archives/*.txt  ( doesn't work ) fails with
>    Arguments too long
> 
>    2. find /usr1/archives/ | xargs cat > /tmp/mbox

What about

   find -name '*.txt' /usr1/archives -exec mhonarc -add {} \;

Or

   find -name '*.txt' /usr1/archives -exec cat {} \; > /tmp/mbox
   mhonarc -add /tmp/mbox

Chris


[Index of Archives]     [Bugtraq]     [Yosemite News]     [Mhonarc Home]