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:reply-to:mime-version:to :subject:references:in-reply-to:content-type :content-transfer-encoding; q=dns; s=default; b=VJQvgE9irHVMNhlE QSkV/HlqdY/ztYtaTQ+ADgY0vSdGg16yO+ybam1PkqgqMxwdKp2rY3DVqXSEieKZ wEqUZgOOxs96lynSN2jYOPawxLYwMh8DnhmxEq6gLflif7iMQ+XwrcjCFBPvSkzR +wrFFnrgudVvQvQfse1l2ylo5+0= 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:reply-to:mime-version:to :subject:references:in-reply-to:content-type :content-transfer-encoding; s=default; bh=xhttdPptN8h2oFn5+pqpgt 72Yg0=; b=NGyaSo91lcQ7egcjsQ5ugwFnHLaBwf1/XfIRu4J+S2pbuB0N9Iqg+i kgIkbSsKph0QSsI0ylaphblyLJ1iD3Gs07SAOWEJncEd/3lPTdympxQOtCbbx5zU MHPAOhavIzcTttBnXelQobCiUF6z3WgELNWcasFQEnsupC5WYQDeA= 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 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.0 required=5.0 tests=BAYES_40,RCVD_IN_DNSWL_NONE,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: csmail.cs.umass.edu Message-ID: <532C78E2.3040906@cs.umass.edu> Date: Fri, 21 Mar 2014 13:37:38 -0400 From: Eliot Moss Reply-To: moss AT cs DOT umass DOT edu User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.3.0 MIME-Version: 1.0 To: cygwin AT cygwin DOT com Subject: Re: mkdir working in command line but not working in csh script References: <1395328801 DOT 67409 DOT YahooMailNeo AT web121201 DOT mail DOT ne1 DOT yahoo DOT com> <532B6155 DOT 2000003 AT cygwin DOT com> In-Reply-To: <532B6155.2000003@cygwin.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes On 3/20/2014 5:44 PM, Larry Hall (Cygwin) wrote: > On 3/20/2014 11:20 AM, Zhihua Liang wrote: >> mkdir working in command line but not working in csh script, After >> running csh script, the error message is: >> >> mkdir: cannot create directory '/home/userID/job': No such file or directory >> >> In the command line, mkdir command can create 'job' directory. >> >> What is the possible cause or reason for this in cygwin. I have >> installed most recent version of cygwin in Windows 7-32 bit system. > > Unless someone here has seen exactly the same problem, you may not get > much in the way of helpful responses without a more detailed report of > how to recreate the problem (i.e. a script at least). cygcheck output > would be helpful too. See the problem reporting guidelines at the link > below for details. > >> Problem reports: http://cygwin.com/problems.html I agree with Larry, but offer a this thought: Unless you invoke mkdir with -p, it won't create parent directories, so if /home/userID does not exist, the command will fail, with the error message you indicated. If by "command line" you mean using the Windows command line program CMD.EXE, then its behavior is like mkdir -p, not mkdir. (Cygwin follows Posix standards on this, on purpose; it does not aim to mimic cmd.exe!) If you are talking about bash or csh as your command line, then I do not have further suggestions without seeing more details. Regards -- Eliot Moss -- 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