0

我的主目录中有一个名为 ~/bestphotosever 的文件夹

所以我做了一个符号链接如下:

cd ~
ln -s bestphotosever bpe
cd bpe
pwd
#-- here is what pwd shows
--> /home/myuser/bpe

#What I would like it to show is the physical name
--> /home/myuser/bestphotosever

任何想法如何使用“ln”命令来做到这一点。

4

1 回答 1

2

您可以改用“pwd -P”,避免所有符号链接并打印“真实”路径

编辑:我刚刚意识到我可能没有回答你的问题。

你确定“你想要”一个硬链接吗?有关硬链接与符号链接的一些信息。 https://askubuntu.com/questions/210741/why-are-hard-links-not-allowed-for-directories

如果您只想进入名称较短的文件夹,则 tabcompletion 或 aliases 都是您的朋友。

于 2015-09-27T01:39:16.193 回答