bug-coreutils
[Top][All Lists]
Advanced

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

Re: when executing mkdir command ...... ??


From: Bob Proulx
Subject: Re: when executing mkdir command ...... ??
Date: Fri, 28 Dec 2007 11:38:33 -0700
User-agent: Mutt/1.5.13 (2006-08-11)

Satyanarayana Ponugoti wrote:
> when $mkdir isis\is 
> 
> command is executed, 
> 
> it creates a directory by name isisis,
> 
> and the same result is shown when $mkdir isisis
> 
> is executed,

Yes.  That is correct.  There is nothing special about '\i' and so the
shell will simply return 'i' there.  You can verify this with the echo
command.  Here is an example using the bash shell.

  $ echo isis\is
  isisis

  $ echo isisis
  isisis

See?  No difference.

Perhaps you are confusing DOS-style '\' directory separators with
Unix-style '/' directory separators?

> IS IT a BUG in mkdir command...???

Not a bug.

Bob




reply via email to

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