Re: Shell question

2006-10-26 Thread Jack Stone
From: Jordan Gordeev <[EMAIL PROTECTED]> To: freebsd-questions@freebsd.org Subject: Re: Shell question Date: Thu, 26 Oct 2006 20:05:50 +0300 Jack Stone wrote: From: Warren Block <[EMAIL PROTECTED]> To: Jack Stone <[EMAIL PROTECTED]> CC: freebsd-questions@freebsd.org

Re: Shell question

2006-10-26 Thread Jordan Gordeev
Jack Stone wrote: From: Warren Block <[EMAIL PROTECTED]> To: Jack Stone <[EMAIL PROTECTED]> CC: freebsd-questions@freebsd.org Subject: Re: Shell question Date: Wed, 25 Oct 2006 21:35:55 -0600 (MDT) On Wed, 25 Oct 2006, Jack Stone wrote: Folks: I have managed to piece together a

Re: Shell question

2006-10-26 Thread Jack Stone
From: Warren Block <[EMAIL PROTECTED]> To: Jack Stone <[EMAIL PROTECTED]> CC: freebsd-questions@freebsd.org Subject: Re: Shell question Date: Wed, 25 Oct 2006 21:35:55 -0600 (MDT) On Wed, 25 Oct 2006, Jack Stone wrote: Folks: I have managed to piece together a shell script tha

Re: Shell question

2006-10-25 Thread Warren Block
On Wed, 25 Oct 2006, Jack Stone wrote: Folks: I have managed to piece together a shell script that is able to retrieve the domains from the spams of the day and summarize those in a special file that can then be added to the sendmail's rejects in the access.db. But, first I have to eyeball th

Re: Shell question

2006-10-25 Thread cpghost
On Wed, Oct 25, 2006 at 09:53:47AM -0500, Jack Stone wrote: > I have managed to piece together a shell script that is able to retrieve > the domains from the spams of the day and summarize those in a special file > that can then be added to the sendmail's rejects in the access.db. But, > first I

Re: Shell question

2006-10-25 Thread Vince
Jack Stone wrote: > Folks: > I have managed to piece together a shell script that is able to retrieve > the domains from the spams of the day and summarize those in a special > file that can then be added to the sendmail's rejects in the access.db. > But, first I have to eyeball the list and remov

Re: shell question

2005-04-06 Thread Eduardo Viruena Silva
On Wed, 6 Apr 2005, Richard Caley wrote: > In article <[EMAIL PROTECTED]>, mrspock (m) writes: > > m> The problem is that I don't want to use the temporary > m> file that I used above (stdout, stderr, out), I just > m> want a "filter" > > If you want to rearange the output so that all the errors

RE: shell question

2005-04-06 Thread Eduardo Viruena Silva
On Tue, 5 Apr 2005, Björn König wrote: > mrspock at esfm dot ipn dot mx wrote: > > > I need to concatenate the standard output and then > standard > > error output in a file, but I need to convert the standard > > > output into PostScript before the concatenation. > > > > program stdout

Re: shell question

2005-04-06 Thread Richard Caley
In article <[EMAIL PROTECTED]>, mrspock (m) writes: m> The problem is that I don't want to use the temporary m> file that I used above (stdout, stderr, out), I just m> want a "filter" If you want to rearange the output so that all the errors are after all the non errors, then you are going to ne

RE: shell question

2005-04-05 Thread Eduardo Viruena Silva
On Tue, 5 Apr 2005, Björn König wrote: > > > > program stdout 2> stderr > > > cat stdout > out > > > a2ps stdout >> out > > You meant > >program stdout 2> stderr >cat stdout > out >a2ps **stderr** >> out > > Don't you? > yes! sorry!

RE: shell question

2005-04-05 Thread Björn König
> > program stdout 2> stderr > > cat stdout > out > > a2ps stdout >> out You meant program stdout 2> stderr cat stdout > out a2ps **stderr** >> out Don't you? ___ freebsd-questions@freebsd.org mailing list ht

RE: shell question

2005-04-05 Thread Björn König
mrspock at esfm dot ipn dot mx wrote: > I need to concatenate the standard output and then standard > error output in a file, but I need to convert the standard > output into PostScript before the concatenation. > > program stdout 2> stderr > cat stdout > out > a2