Re: BUG: /bin/pwd -P doesn't expand all symlinks

2015-10-23 Thread Andrey Repin
Greetings, Mark O'Keefe! > While using /bin/pwd -P to expand directories to get the absolute, > non-symlinked version of the directory I discovered that this doesn't work > on Cygwin as I believe it is meant to work. > $ cd /tmp > $ /bin/pwd -P > /tmp > $ ln -s /home . > $ cd home > $ /bin/pwd -

BUG: /bin/pwd -P doesn't expand all symlinks

2015-10-22 Thread Mark O'Keefe
Hi, While using /bin/pwd -P to expand directories to get the absolute, non-symlinked version of the directory I discovered that this doesn't work on Cygwin as I believe it is meant to work. $ cd /tmp $ /bin/pwd -P /tmp $ ln -s /home . $ cd home $ /bin/pwd -P /home $ pwd /tmp/home $ mkdir dummy