Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com From: "Dave Korn" To: Subject: RE: Mailing list redirection etiquette? Date: Wed, 6 Oct 2004 18:25:31 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit In-Reply-To: Message-ID: X-OriginalArrivalTime: 06 Oct 2004 17:25:31.0220 (UTC) FILETIME=[7AEAC940:01C4ABC9] > -----Original Message----- > From: cygwin-owner On Behalf Of Fred Kulack > Sent: 06 October 2004 17:29 > From your command prompt, use: > > google cygwin acronym list > > If that doesn't work, setup this function: > > typeset -f google > google () > { > url="http://www.google.com"; > separator="/search?q="; > for i in $@; > do > url="${url}${separator}${i}"; > separator="+"; > done; > echo "Starting: $url"; > ~/bin/firefox "$url" & > } Nice one! Can I just suggest one little change: ====================================== echo "Starting: $url"; - ~/bin/firefox "$url" & + cygstart "$url" & } which should be more generic across different browsers etc. cheers, DaveK -- Can't think of a witty .sigline today.... -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/