Re: Basic grep isn't working for me

2005-03-29 Thread Lowell Gilbert
Andrew [EMAIL PROTECTED] writes:

 This command has always worked before, but we recently moved to a new
 server and now it isn't.
 
 ---
 
 su-2.05b# /usr/local/bin/keychain | grep -c existing
 
 KeyChain 2.5.1; http://www.gentoo.org/proj/en/keychain/
 Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL
 
 * Found existing ssh-agent (84261)
 
 0
 
 ---
 
 Any help would be much appreciated.

It is printing its output on standard error, not standard output.

In sh, you could do this by redirecting standard error onto standard
output:
 $ keychain 21 |grep exist
 * Found existing ssh-agent (46206)
 $ 

but you can't do that in csh-type shells.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Basic grep isn't working for me

2005-03-28 Thread Andrew
This command has always worked before, but we recently moved to a new
server and now it isn't.

---

su-2.05b# /usr/local/bin/keychain | grep -c existing

KeyChain 2.5.1; http://www.gentoo.org/proj/en/keychain/
Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL

* Found existing ssh-agent (84261)

0

---

Any help would be much appreciated.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]