X-Recipient: archive-cygwin@delorie.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@cygwin.com; run by ezmlm
List-Id: <cygwin.cygwin.com>
List-Subscribe: <mailto:cygwin-subscribe@cygwin.com>
List-Archive: <http://sourceware.org/ml/cygwin/>
List-Post: <mailto:cygwin@cygwin.com>
List-Help: <mailto:cygwin-help@cygwin.com>, <http://sourceware.org/ml/#faqs>
Sender: cygwin-owner@cygwin.com
Mail-Followup-To: cygwin@cygwin.com
Delivered-To: mailing list cygwin@cygwin.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 <towo@towo.net>
User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:17.0) Gecko/20130328 Thunderbird/17.0.5
MIME-Version: 1.0
To: cygwin@cygwin.com
Subject: Re: starting cygwin shell
References: <loom.20130407T091557-947@post.gmane.org>
In-Reply-To: <loom.20130407T091557-947@post.gmane.org>
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

