On Thu, Sep 23, 1999 at 02:51:15PM -0700, a little birdie told me
that Darryl Okahata remarked
> Oliver Fromme <[EMAIL PROTECTED]> wrote:
>
> > Uhm... Maybe I misunderstand what your 100-line perl script
> > does, but I use the following 3-line shell script instead:
> >
> > #!/bin/sh -
> > cvs status | grep '^File:' | grep -v 'Status: Up-to-date$'
> > true
>
> This works (and is faster), but it doesn't give you concise,
> nicely-formatted pathnames. Personally, I prefer status like:
OK:
#!/bin/sh
(cvs status | grep '^File:' | grep -v 'Status: Up-to-date$') 2> /dev/null
--
Matthew Fuller (MF4839) | [EMAIL PROTECTED]
Unix Systems Administrator | [EMAIL PROTECTED]
Specializing in FreeBSD | http://www.over-yonder.net/
FutureSouth Communications | ISPHelp ISP Consulting
"The only reason I'm burning my candle at both ends, is because I
haven't figured out how to light the middle yet"
To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message