X-Spam-Check-By: sourceware.org To: cygwin AT cygwin DOT com From: Thorsten Kampe Subject: Re: [Newbie] Opening Files in a Folder Date: Sat, 25 Feb 2006 15:43:43 +0000 Lines: 18 Message-ID: References: <2124967 DOT 1140838877859 DOT JavaMail DOT chartpacs AT mac DOT com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit User-Agent: 40tude_Dialog/2.0.15.1 X-IsSubscribed: yes 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 * Michael Banks (2006-02-25 03:41 +0100) > 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. Wrap your lines. > I think the syntax would look like: > find "C:/path/to/desktop/images" -iname "*.jpg" -print0 | xargs -0 > > I don't know what should be substituted for . Any ideas? It seems you already know the name of the folder containing the images, so it's rather trivial: cygstart $USERPROFILE/Desktop/images/*.jpg If the images are in sub folders you could use zsh or find: cygstart $USERPROFILE/Desktop/images/**/*.jpg -- 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/