X-Recipient: archive-cygwin AT delorie DOT com DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:message-id:date:from:mime-version:to:subject :references:in-reply-to:content-type:content-transfer-encoding; q=dns; s=default; b=VkEGrMSQ0Ab++SaPS7FN5N438yHpFQ5HAEoAx9Nnocs rEMReOLQitAC1V3s9jOl8Sk+81Xh3aqPosfa+Ed8PWAZbv2l+077nd0pr6IuFahO gs/HZE4asfb88qAp/so0SFbFOdg5UuAjXuwNH75UPvb+oGd+kRsIdjzNnS14zB1o = DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:message-id:date:from:mime-version:to:subject :references:in-reply-to:content-type:content-transfer-encoding; s=default; bh=pN/UJFIalGWc5pzY1P6kSnqh63k=; b=lxC23gGFTDJbCl++4 E4xwo8qswc6ys8vQtx7t6hmE/LxFSYS0QfOHIXSzCVOBcwGpbFGyZrqAGLAfa6Id N8HX/qB9zKERWQpfIZbYW5CjIB000n3swMQdbT+g/vbEhLgrqtZEa1+EzL4DEC4V RUZrQO4jDztxCkwyWn2DAhzLxk= 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 X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=AWL,BAYES_40,KHOP_THREADED,RCVD_IN_DNSWL_NONE,RCVD_IN_HOSTKARMA_YE,SPF_HELO_PASS autolearn=ham version=3.3.1 Message-ID: <5161421A.6080208@towo.net> Date: Sun, 07 Apr 2013 11:53:30 +0200 From: Thomas Wolff User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:17.0) Gecko/20130328 Thunderbird/17.0.5 MIME-Version: 1.0 To: cygwin AT cygwin DOT com Subject: Re: starting cygwin shell References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Am 07.04.2013 09:42, schrieb Gene: > Hello Forum, > I am new to cygwin. > I am trying to create a .bat file so I can start cygwin from w7 windows menu. Cygwin install creates a "Cygwin Terminal" icon on your desktop in in your Programs menu. You can drag or (with Control-) copy it anywhere in menus where you want it. Is that what you need? > ... (unclear) > Second question: > > I am running below code and shell dissapear. > I could catch the message before it happens. Do you know what seems to be a > problem? > > for k in `ls` > do > print "here is $k" > done $ type print print ist /cygdrive/c/WINDOWS/system32/print So you effectively tried to print files called "here is ..." with a Windows tool. You probably meant this instead: echo "here is $k" -- 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