Re: perl regex vs text editor syntax

2010-02-27 Thread Rob Dixon
jbl wrote: I am having trouble with a regex in perl. I have an array that looks like this: Abilene,KS,67410,1019 2000 Ave,38.88254,-97.20204,Grant Town Fire Dist *Arlington,KS,67514,100 W Main St,Reno County Fire Dist 4 Abilene,KS,67410,1463 3325 Ave,39.079136,-97.1181,Sherman Township Fire Distr

syslog filters

2010-02-27 Thread Harry Putnam
Wanting to filter syslog output with a script attached to the syslog daemon. I've been all over cpan with many search strings but what I turn up appears to be way more complex than I'm looking for. I thought to write my own script and have done so more than once. Relying on a named pipe to captu

perl regex vs text editor syntax

2010-02-27 Thread jbl
I am having trouble with a regex in perl. I have an array that looks like this: Abilene,KS,67410,1019 2000 Ave,38.88254,-97.20204,Grant Town Fire Dist *Arlington,KS,67514,100 W Main St,Reno County Fire Dist 4 Abilene,KS,67410,1463 3325 Ave,39.079136,-97.1181,Sherman Township Fire District *Beattie,

Controlling one process depending on the status of another

2010-02-27 Thread Eric Veith1
Dear list, I'm wrinting a perl program that works with different threads. Those threads depend on each other, not all in the same way. Some threads should stop when others are finished with their work, and again others are to be started afterwards. The current architecture I have in mind is tha