3 options: 1. Excel or Access may support importing data delimited by an arbitrary character. If so this is the easiest option. 2. Read the file in a very long window, (e.g. notepad with word wrap turned off) and just scroll to the end to ignore the first few fields. :) 3. Install cygwin, open a console, type: cat output.txt | cut -d "|" -f 4 > new-filename.txt Then open new-filename.txt. (That's the hardcore way to do it! Help is available; type "man cut" to see what cut is doing, etc).
On Tue, Aug 08, 2006 at 02:19:57PM -0400, Nicholas Sturm wrote: > Does anyone have an easy way to unpack the attached file. One long line > separated by | is not very easy to read and comprehend. I suppose this is > a standard format on some type of OS, but not on Windows. > ---------------------------------------------------------------------------- > -------------------------- > > > > [Original Message] > > From: Shoey Fighter <shoeyfighter at gmail.com> > > To: <support at freenetproject.org> > > Date: 8/8/2006 1:35:22 PM > > Subject: [freenet-support] Freenet can no longer start > > > > Hello. Over the past few days, I have been having a lot of trouble > > with freenet. First, the update script would constantly fail because > > it could not detect any mirrors, then it would promptly become an > > empty file. This forced me to fetch a new update script from the > > repository. After trying this a few more times, i decided to delete > > all of my jar files, and once again fetch the update script from the > > repository. Finally, this seemed to work, as the update script did not > > delete itself. > > > > However, Freenet still will not start. After looking over the > > wrapper.log, it seems that I have been getting OOM errors when it is > > trying to start. I have included the important part of my wrapper.log > > (hopefully). > > > > I am running the latest version of freenet (if the update.sh script is > > not lying to me) on Fedora Core 5 with the Sun java 1.5 VM. > > > > Thanks, > > shoeyfighter > > > _______________________________________________ > Support mailing list > Support at freenetproject.org > http://news.gmane.org/gmane.network.freenet.support > Unsubscribe at http://emu.freenetproject.org/cgi-bin/mailman/listinfo/support > Or mailto:support-request at freenetproject.org?subject=unsubscribe > -- Matthew J Toseland - toad at amphibian.dyndns.org Freenet Project Official Codemonkey - http://freenetproject.org/ ICTHUS - Nothing is impossible. Our Boss says so. -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: Digital signature URL: <https://emu.freenetproject.org/pipermail/support/attachments/20060808/ecc0da7a/attachment.pgp>
