Possible Duplicate:
unix, difference between path starting with '/' and '//'
If I make a cd // followed by a pwd I see:
# cd //
# pwd
//
why is that? what's the differece with:
cd /
pwd
/
Everything looks the same to me...
Possible Duplicate:
unix, difference between path starting with '/' and '//'
If I make a cd // followed by a pwd I see:
# cd //
# pwd
//
why is that? what's the differece with:
cd /
pwd
/
Everything looks the same to me...
cd ///and more go back to giving/, so I suspect there's some special handling for//in the builtin pwd(/bin/pwdworks as expected). – Ulrich Schwarz Nov 07 '11 at 14:50