Kae Verens wrote:
> but, if you do this:
> cd // ; pwd
>
> then the CLI reports
> //
Using two "//" at the start of a path name is special because in some
systems it means the path component that follows is a hostname.
Therefore it must be preserved verbatim.
Bob
On 7/14/17 7:14 AM, Kae Verens wrote:
> I'm not even sure if cd is part of Bash?
It is. It's a regular shell builtin.
> anyway - if you type any of the following:
> cd / ; pwd
> cd /// ; pwd
> cd ; pwd
>
> the CLI always reports
> /
>
> but, if you do this:
> cd // ; pwd
>
> then the CLI