X-Spam-Check-By: sourceware.org
Date: Sat, 25 Feb 2006 00:31:25 -0500 (EST)
From: Igor Peshansky <pechtcha@cs.nyu.edu>
Reply-To: cygwin@cygwin.com
To: Michael Banks <chartpacs@mac.com>
cc: cygwin@cygwin.com
Subject: Re: [Newbie] Opening Files in a Folder
In-Reply-To: <2124967.1140838877859.JavaMail.chartpacs@mac.com>
Message-ID: <Pine.GSO.4.63.0602250021180.13725@access1.cims.nyu.edu>
References: <2124967.1140838877859.JavaMail.chartpacs@mac.com>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:cygwin-unsubscribe-archive-cygwin=delorie.com@cygwin.com>
List-Subscribe: <mailto:cygwin-subscribe@cygwin.com>
List-Archive: <http://sourceware.org/ml/cygwin/>
List-Post: <mailto:cygwin@cygwin.com>
List-Help: <mailto:cygwin-help@cygwin.com>, <http://sourceware.org/ml/#faqs>
Sender: cygwin-owner@cygwin.com
Mail-Followup-To: cygwin@cygwin.com
Delivered-To: mailing list cygwin@cygwin.com

On Fri, 24 Feb 2006, Michael Banks wrote:

> Hello,

Hi.  <http://cygwin.com/acronyms/#PCYMTWLL>.  Thanks.

> Suppose I have a folder on the desktop that contains a number of files.
> I would like to select only the .jpg files and then open them in a) a
> particular app if possible, or b) whatever app is associated with the
> .jpg extension.
>
> I think the syntax would look like:
>
> find "C:/path/to/desktop/images" -iname "*.jpg" -print0 | xargs -0 <some command to open these files>
>
> I don't know what should be substituted for <some command to open these
> files>. Any ideas?

"cygstart" for b).  But you'd need to change your command line to

find "C:/path/to/desktop/images" -iname "*.jpg" -print0 | \
  xargs -r0 -n1 cygstart

If you want to do a) (i.e., open the files in a given application), most
of the time you can simply supply the filenames to the application, after
putting them in Windows form, i.e.,

find "C:/path/to/desktop/images" -iname "*.jpg" -print0 | \
  xargs -r0 cygpath -aw | xargs -r -d'\n' your_app

Depending on whether your_app is able to accept multiple files at once,
you may or may not want to add "-n1" to xargs...
HTH,
	Igor
-- 
				http://cs.nyu.edu/~pechtcha/
      |\      _,,,---,,_	    pechtcha@cs.nyu.edu | igor@watson.ibm.com
ZZZzz /,`.-'`'    -.  ;-;;,_		Igor Peshansky, Ph.D. (name changed!)
     |,4-  ) )-,_. ,\ (  `'-'		old name: Igor Pechtchanski
    '---''(_/--'  `-'\_) fL	a.k.a JaguaR-R-R-r-r-r-.-.-.  Meow!

"Las! je suis sot... -Mais non, tu ne l'es pas, puisque tu t'en rends compte."
"But no -- you are no fool; you call yourself a fool, there's proof enough in
that!" -- Rostand, "Cyrano de Bergerac"

--
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/

