$ cd ~ $ ln -s /real/folder symbolic_link $ cd symbolic_link $ cd .. $ ls -l symbolic_link -> /real/folder/ $ cd symbolic_link $ ls -l .. folder
换句话说,为什么 的行为与您在符号链接目录中时的行为cd ..不同ls ..?
cd ..
ls ..
linux
linux ×1