Mailing-List: contact cygwin-help AT sourceware DOT cygnus DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT sources DOT redhat DOT com Delivered-To: mailing list cygwin AT sources DOT redhat DOT com Message-Id: <5.1.0.14.2.20011012140538.02b65008@pop3.cris.com> X-Sender: rrschulz AT pop3 DOT cris DOT com X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Fri, 12 Oct 2001 14:08:08 -0700 To: RCUNNINGHAM AT redlake DOT com, cygwin AT cygwin DOT com From: Randall R Schulz Subject: Re: Cygwin "which" and aliases In-Reply-To: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Bob, It works fine: % which which which () /usr/bin/which % So I know there is both a binary (or a script) and a shell function. Very nice, actually. Are you using BASH? I don't think it would work in a CSH-compatible shell. Randall Schulz Mountain View, CA USA At 13:55 2001-10-12, RCUNNINGHAM AT redlake DOT com wrote: >I wanted to make my "which" command also show aliases, so I tried the >pretty macro from the which man page. It didn't work. > >I decided I also wanted to list functions, so I needed a better approach. >Here's my attempt at a bash function for which: > >which () >{ > builtin alias $* 2>|/dev/null; > set | grep ^$*; > /usr/bin/which $* 2>|/dev/null | grep -v ^no >} > > >Try entering "which which". > >Anyone know of an improved approach? > > >Regards, > >-BobC -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/