sh 如何创建软链接/符号链接?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 如何创建软链接/符号链接?相关的知识,希望对你有一定的参考价值。

Soft links are created with the ln command. For example, the following would create a soft link named link1 to a file named file1, both in the current directory
$ ln -s file1 link1

To verify new soft link run:
$ ls -l file1 link1

以上是关于sh 如何创建软链接/符号链接?的主要内容,如果未能解决你的问题,请参考以下文章

linux 链接的使用 创建和删除符号连接(软、硬链接)

linux命令:ln 链接文件--硬链接,符号链接(软链接)

linux中的软连接的文件前缀

描述硬链接和软链接区别

Linux中有两种不同的文件链接类别。 符号链接(又称软链接) 硬链接

硬链接和软连接(符号链接)