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 Date: Wed, 6 Oct 2004 14:09:11 -0400 (EDT) From: Igor Pechtchanski Reply-To: cygwin AT cygwin DOT com To: Dave Korn cc: cygwin AT cygwin DOT com Subject: RE: Mailing list redirection etiquette? In-Reply-To: Message-ID: References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Scanned-By: MIMEDefang 2.39 On Wed, 6 Oct 2004, Dave Korn wrote: > > -----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. FWIW, typeset -f google google () { IFS=+; url="http://www.google.com/search?q=$*"; echo "Starting: $url"; cygstart -o "$url" >/dev/null } but this won't quote the arguments properly -- if you want that, you need something like google () { url="http://www.google.com/search?q=`echo -n $*|perl -mCGI -pe '$_=CGI::escape($_)'`"; echo "Starting: $url"; cygstart -o "$url" >/dev/null } instead. HTH, Igor -- http://cs.nyu.edu/~pechtcha/ |\ _,,,---,,_ pechtcha AT cs DOT nyu DOT edu ZZZzz /,`.-'`' -. ;-;;,_ igor AT watson DOT ibm DOT com |,4- ) )-,_. ,\ ( `'-' Igor Pechtchanski, Ph.D. '---''(_/--' `-'\_) fL a.k.a JaguaR-R-R-r-r-r-.-.-. Meow! "Happiness lies in being privileged to work hard for long hours in doing whatever you think is worth doing." -- Dr. Jubal Harshaw -- 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/