linux 建立软连接和删除软连接方法
http://www.cnblogs.com/xiaochaohuashengmi/archive/2011/10/05/2199534.html
建立软连接 [[email protected] test]# ls -il 总计 0 1491138 -rw-r–r– 1 root root 48 07-14 14:17 file1 1491139 -rw-r–r– 2 root root 0 07-14 14:17 file2 1491139 -rw-r–r– 2 root root 0 07-14 14:17 file2hand [[email protected] test]# ln -s file1 file1soft [[email protected] test]# ls -il 总计 0 1491138 -rw-r–r– 1 root root 48 07-14 14:17 file1 1491140 lrwxrwxrwx 1 root root 5 07-14 14:24 file1soft -> file1 1491139 -rw-r–r– 2 root root 0 07-14 14:17 file2 1491139 -rw-r–r– 2 root root 0 07-14 14:17 file2hand 删除软连接 rm -rf symbolic_name 注意不是rm -rf symbolic_name/ [[email protected] test]# ls -il 总计 0 1491138 -rw-r–r– 1 root root 0 07-14 14:17 file1 1491140 lrwxrwxrwx 1 root root 5 07-14 14:24 file1soft -> file1 1491139 -rw-r–r– 2 root root 0 07-14 14:17 file2 1491139 -rw-r–r– 2 root root 0 07-14 14:17 file2hand [[email protected] test]# rm -rf file1soft [[email protected] test]# ls -il 总计 0 1491138 -rw-r–r– 1 root root 0 07-14 14:17 file1 1491139 -rw-r–r– 2 root root 0 07-14 14:17 file2 1491139 -rw-r–r– 2 root root 0 07-14 14:17 file2hand [[email protected] test]#
相关推荐
xiaojiang0 2020-06-21
youandme 2020-06-03
onlykg 2020-03-08
ljbhander 2020-03-05
87447100 2020-01-30
圆圆的世界CSDN 2020-01-25
CloudXli 2020-01-14
huangzonggui 2020-01-14
cyhgogogo 2013-06-10
nanbiebao 2019-12-27
GeorgeTH 2019-12-18
PHP学习笔记 2019-12-01
seacover 2015-08-14
安得情怀似旧时 2019-10-27
GeorgeTH 2019-10-23
涅磐 2018-02-18
archimedes 2019-04-16