我在一个符号链接的目录中
me@hostname:/home/me$ ls -al
the_link -> actual_a
actual_a
actual_b
actual_c
me@hostname:/home/me$ cd the_link
me@hostname:/home/me/the_link$
现在,当我打开 shell 时,其他一些进程将符号链接从the_link -> actual_a
to更改为the_link -> actual_b
,甚至可能更改为rm -rf actual_a
. 如果我在我的 shell 中运行一个命令,它会做一些奇怪的事情。有没有办法告诉cd
“re-cd”进入我所在的目录?
显然我可以
me@hostname:/home/me/the_link$ cd ..
me@hostname:/home/me$ cd the_link
但我可以在一个命令中完成吗?