Suppose this directory structure:
/folder1/
/folder2/
Now, if I enter
cd /folder1
ln -s /folder2 linkToFolder2
cd /folder1/linkToFolder2
ls ..
I thought that, given that pwd is /folder1/linkToFolder2, doing a "ls .." would return /folder1's contents. However, it is returning folder2's. Is this behavior correct?