From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.help Subject: Re: gunzip problem on Windows Date: Thu, 05 Nov 2009 21:06:46 +0200 Message-ID: <83fx8sbxkp.fsf@gnu.org> References: <83my32b2cc.fsf@gnu.org> NNTP-Posting-Host: lo.gmane.org X-Trace: ger.gmane.org 1257448047 32177 80.91.229.12 (5 Nov 2009 19:07:27 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 5 Nov 2009 19:07:27 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Nov 05 20:07:21 2009 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1N67g0-0004X2-56 for geh-help-gnu-emacs@m.gmane.org; Thu, 05 Nov 2009 20:07:20 +0100 Original-Received: from localhost ([127.0.0.1]:48342 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1N67fz-0004Mo-Ho for geh-help-gnu-emacs@m.gmane.org; Thu, 05 Nov 2009 14:07:19 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1N67fe-0004Kj-Io for help-gnu-emacs@gnu.org; Thu, 05 Nov 2009 14:06:58 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1N67fa-0004Gk-1g for help-gnu-emacs@gnu.org; Thu, 05 Nov 2009 14:06:58 -0500 Original-Received: from [199.232.76.173] (port=58447 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1N67fZ-0004Gc-Ug for help-gnu-emacs@gnu.org; Thu, 05 Nov 2009 14:06:53 -0500 Original-Received: from mtaout22.012.net.il ([80.179.55.172]:52260) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1N67fZ-0002lB-Dh for help-gnu-emacs@gnu.org; Thu, 05 Nov 2009 14:06:53 -0500 Original-Received: from conversion-daemon.a-mtaout22.012.net.il by a-mtaout22.012.net.il (HyperSendmail v2007.08) id <0KSN00400GSKQL00@a-mtaout22.012.net.il> for help-gnu-emacs@gnu.org; Thu, 05 Nov 2009 21:06:38 +0200 (IST) Original-Received: from HOME-C4E4A596F7 ([87.70.37.193]) by a-mtaout22.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0KSN00MUYH31WPE0@a-mtaout22.012.net.il> for help-gnu-emacs@gnu.org; Thu, 05 Nov 2009 21:06:38 +0200 (IST) In-reply-to: X-012-Sender: halo1@inter.net.il X-detected-operating-system: by monty-python.gnu.org: Solaris 10 (beta) X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:69507 Archived-At: > From: Kevin Rodgers > Date: Thu, 05 Nov 2009 07:26:07 -0700 > > > It might work to copy gzip.exe into gunzip.exe. > > > > Failing that, create a batch file gunzip.bat that does the same as the > > shell script gunzip, and put it somewhere on your Path. > > Why not just rename the existing gunzip script to gunzip.bat? Because Unixy shell scripts and Windows batch files have different syntax for how they invoke commands. For example, a typical Unix shell script will have a "#! /bin/sh" line as its first line; the Windows command processor will choke on such a line.