bug-coreutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#7738: Some advice needed


From: Paul Eggert
Subject: bug#7738: Some advice needed
Date: Sun, 26 Dec 2010 11:18:12 -0800
User-agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.13) Gecko/20101208 Thunderbird/3.1.7

On 12/26/2010 09:24 AM, Jens Gunnarsson wrote:
> $ mkdir ~/dos/c
> mkdir: cannot create directory `/home/jens/dos/c': No such file or directory

The problem is that you're trying to make ~/dos/c
without making ~/dos first.  This should work:

mkdir ~/dos ~/dos/c

And this will also work, and it'll be a bit simpler:

mkdir -p ~/dos/c

Admittedly the mkdir diagnostic is pretty bad here.





reply via email to

[Prev in Thread] Current Thread [Next in Thread]