X-Spam-Check-By: sourceware.org To: cygwin AT cygwin DOT com From: Rex Godby Subject: Two short scripts for Cygwin-Windows interoperation Date: Thu, 4 Jan 2007 16:53:55 +0000 (UTC) Lines: 17 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit User-Agent: Loom/3.14 (http://gmane.org/) X-IsSubscribed: yes Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Id: 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 Two tiny Cygwin shell scripts may be of use. Each script has a single active line, which I include here (to try these from the command line, of course replace $1 with your desired argument): 1. To quickly find files and directories in "My Documents" and Desktop (down to a certain depth): find "/cygdrive/c/Documents and Settings/$USER/Desktop" \ "/cygdrive/c/Documents and Settings/$USER/My Documents" \ -maxdepth 3 | grep "$1" 2. To open an Explorer window in a specified directory (given in Cygwin style), or to open a document in the proper Windows application: /cygdrive/c/WINDOWS/explorer `cygpath -w "$1"` Rex -- 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/