赞
踩
答案是都可以修改
测试命令如下
$ cd /tmp # 所有人都有rwx权限
$ touch test.txt
$ vim test.txt #写入: this is the test file
$ ln test.txt hardlink.txt #硬链接
$ ln -s test.txt symboliclink.txt #符号链接
$ vim symboliclink.txt # 换行写入symboliclink writes
$ tail test.txt # 可以修改
$ vim hardlink.txt # 换行写入hardlink writes
$ tail test.txt # 可以修改
执行结果如下:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。