From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19084 invoked by alias); 9 Nov 2014 22:05:15 -0000 Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner@cygwin.com Mail-Followup-To: cygwin@cygwin.com Received: (qmail 19068 invoked by uid 89); 9 Nov 2014 22:05:14 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.3 required=5.0 tests=AWL,BAYES_50,FREEMAIL_FROM,KAM_THEBAT,SPF_SOFTFAIL autolearn=no version=3.3.2 X-HELO: smtp.ht-systems.ru Received: from smtp.ht-systems.ru (HELO smtp.ht-systems.ru) (78.110.50.177) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Sun, 09 Nov 2014 22:05:14 +0000 Received: from [91.78.178.160] (helo=darkdragon.lan) by smtp.ht-systems.ru with esmtpa (Exim 4.80.1) (envelope-from ) (Authenticated sender: postmaster@rootdir.org) id 1Xnabb-00055g-9E ; Mon, 10 Nov 2014 01:05:07 +0300 Received: from [192.168.1.10] (HELO daemon2) by daemon2 (Office Mail Server 0.8.12 build 08053101) with SMTP; Sun, 09 Nov 2014 21:58:07 -0000 Date: Sun, 09 Nov 2014 22:05:00 -0000 From: Andrey Repin Reply-To: cygwin@cygwin.com Message-ID: <71156572.20141110005807@yandex.ru> To: "Nellis, Kenneth" , cygwin@cygwin.com Subject: Re: how to embed shell script within a .BAT file In-Reply-To: <0D835E9B9CD07F40A48423F80D3B5A702E8379F0@USA7109MB022.na.xerox.net> References: <0D835E9B9CD07F40A48423F80D3B5A702E8379F0@USA7109MB022.na.xerox.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2014-11/txt/msg00165.txt.bz2 Greetings, Nellis, Kenneth! > I'm tired of creating pairs of script files: a clickable .BAT file > to invoke my shell script and then my shell script to do the actual > work. google: cygwin shell wrapper script I posted mine in the mailing list not once, and it's not the only available solution. > I was wondering if any of the geniuses on this list have come > up with a way to embed a shell script inside a clickable .BAT file. It is technically possible to invoke specific processor for a bat file, but no Cygwin tools understand the necessary syntax. Your only option is to create proper association(s) for your favorite extensions. FTYPE unixshell.script="C:\Programs\Cygwin_64\bin\env.exe" -- /bin/cygwrap.sh "%1" %* ASSOC .sh=unixshell.script ASSOC .awk=unixshell.script ASSOC .pl=unixshell.script ASSOC .whatver=unixshell.script The wrapper is as simple as -------->8-------->8-------->8-------->8-------- #!/bin/sh test -z "$1" && exit 1 /bin/env -- "$(cygpath -au "$1")" "${@:2}" --------8<--------8<--------8<--------8<-------- Don't forget to add your favorite extensions to PATHEXT, else you won't be able to run them scripts from CMD. -- WBR, Andrey Repin (anrdaemon@yandex.ru) 10.11.2014, <00:51> Sorry for my terrible english... -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple