What is the difference between cd / and cd //? We can see that adding / to the end doesn't do anything. But when I do cd // and pwd, I found:
$ cd //
$ pwd
//
What is difference between / and //? An ls in both directories shows the same content. Why is // needed?
//is "needed"? – fkraiem Sep 19 '14 at 15:49//is needed, do you just mean, why does//need to be treated separately from/? – Eliah Kagan Sep 19 '14 at 16:12