Re: How to divide up?

2008-07-20 Thread Gary Kline
On Sun, Jul 20, 2008 at 05:03:15AM +0300, Giorgos Keramidas wrote: On Sun, 20 Jul 2008 03:44:07 +0300, Giorgos Keramidas [EMAIL PROTECTED] wrote: Now, if you want to merely hack something quick and dirty, a short Perl script can probably do regexp substitution similar to #

Re: How to divide up?

2008-07-20 Thread N. Raghavendra
At 2008-07-20T02:45:51+02:00, Roland Smith wrote: Insert a newline in front of every : gsed -e s//\n/g infile outfile Note that this requires GNU sed. It won't work with BSD sed. It is possible with native `sed' if the newline character in the replacement string is properly escaped: two

Re: How to divide up?

2008-07-20 Thread N. Raghavendra
At 2008-07-19T17:23:48-07:00, Gary Kline wrote: Is there an easyy way of splitting yp these tags into one-per-line? I'm not obcessive [[?, :)]], but for what I've got in mind, the tags and stuff would look better to my eyes? the outcome of this will go ino a special database, not html .

Re: How to divide up?

2008-07-20 Thread Jonathan McKeown
On Sunday 20 July 2008 08:37, Gary Kline wrote: On Sun, Jul 20, 2008 at 05:03:15AM +0300, Giorgos Keramidas wrote: On Sun, 20 Jul 2008 03:44:07 +0300, Giorgos Keramidas [EMAIL PROTECTED] wrote: Now, if you want to merely hack something quick and dirty, a short Perl script can probably do

Re: How to divide up?

2008-07-20 Thread Gary Kline
On Sat, Jul 19, 2008 at 10:23:09PM -0700, Walt Pawley wrote: At 5:23 PM -0700 7/19/08, Gary Kline wrote: Guys, Is there an easyy way of splitting yp these tags into one-per-line? I'm not obcessive [[?, :)]], but for what I've got in mind, the tags and stuff would look better to my eyes?

Re: How to divide up?

2008-07-20 Thread Gary Kline
On Sun, Jul 20, 2008 at 01:20:31PM +0530, N. Raghavendra wrote: At 2008-07-19T17:23:48-07:00, Gary Kline wrote: Is there an easyy way of splitting yp these tags into one-per-line? I'm not obsessive [[?, :)]], but for what I've got in mind, the tags and stuff would look better to my eyes?

Re: How to divide up?

2008-07-20 Thread N. Raghavendra
At 2008-07-20T02:55:25-07:00, Gary Kline wrote: Thanks, but I've very recently become acquainted with tidy and have begun using it on my main index.php--thought.org's www page. This page was an almost unreadable rat's net of by-hand coded html. (as i move toward another mark-up standard.)

Re: How to divide up?

2008-07-20 Thread Matthew Seaman
Gary Kline wrote: On Sun, Jul 20, 2008 at 01:20:31PM +0530, N. Raghavendra wrote: At 2008-07-19T17:23:48-07:00, Gary Kline wrote: Is there an easyy way of splitting yp these tags into one-per-line? I'm not obsessive [[?, :)]], but for what I've got in mind, the tags and stuff would look

How to divide up?

2008-07-19 Thread Gary Kline
Guys, Is there an easyy way of splitting yp these tags into one-per-line? I'm not obcessive [[?, :)]], but for what I've got in mind, the tags and stuff would look better to my eyes? the outcome of this will go ino a special database, not html . is there some clever perl one-liner that

Re: How to divide up?

2008-07-19 Thread Giorgos Keramidas
On Sat, 19 Jul 2008 17:23:48 -0700, Gary Kline [EMAIL PROTECTED] wrote: Guys, Is there an easyy way of splitting yp these tags into one-per-line? I'm not obcessive [[?, :)]], but for what I've got in mind, the tags and stuff would look better to my eyes? the outcome of this will go ino

Re: How to divide up?

2008-07-19 Thread Roland Smith
On Sat, Jul 19, 2008 at 05:23:48PM -0700, Gary Kline wrote: Guys, Is there an easyy way of splitting yp these tags into one-per-line? I'm not obcessive [[?, :)]], but for what I've got in mind, the tags and stuff would look better to my eyes? the outcome of this will go ino a special

Re: How to divide up?

2008-07-19 Thread Giorgos Keramidas
On Sun, 20 Jul 2008 03:44:07 +0300, Giorgos Keramidas [EMAIL PROTECTED] wrote: Now, if you want to merely hack something quick and dirty, a short Perl script can probably do regexp substitution similar to # # WARNING: THIS HAS NOT BEEN TESTED :P # my $foo =

Re: How to divide up?

2008-07-19 Thread Walt Pawley
At 5:23 PM -0700 7/19/08, Gary Kline wrote: Guys, Is there an easyy way of splitting yp these tags into one-per-line? I'm not obcessive [[?, :)]], but for what I've got in mind, the tags and stuff would look better to my eyes? the outcome of this will go ino a special database, not html .