当前位置:   article > 正文

linux目录使用软链接,Linux软链接:实现在任何目录下都能运行脚本及为什么要这样~...

linux bin文件可以添加软连接吗

突发奇想,怎么才能将脚本全图运行,体验自由的感觉~~

直接软连接到/bin目录下:

echo $PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/root/bin

# 只要链接到以上目录,就可以实现全图执行脚本了

# 顺带复习一下旧知识:

# /bin是系统的一些指令。bin为binary的简写主要放置一些系统的必备执行档例如:cat、cp、chmod df、dmesg、gzip、kill、ls、mkdir、more、mount、rm、su、tar等。

# /sbin一般是指超级用户指令。主要放置一些系统管理的必备程式例如:cfdisk、dhcpcd、dump、e2fsck、fdisk、halt、ifconfig、ifup、 ifdown、init、insmod、lilo、lsmod、mke2fs、modprobe、quotacheck、reboot、rmmod、 runlevel、shutdown等。

# /usr/bin 是你在后期安装的一些软件的运行脚本。主要放置一些应用软体工具的必备执行档例如c++、g++、gcc、chdrv、diff、dig、du、eject、elm、free、gnome*、 gzip、htpasswd、kfm、ktop、last、less、locale、m4、make、man、mcopy、ncftp、 newaliases、nslookup passwd、quota、smb*、wget等。

#此时,直接

[root@localhost /]# ln -s test.sh /bin/

[root@localhost /]# test.sh

-bash: /usr/bin/test.sh: Too many levels of symbolic links

有点尴尬~~百度一下:

建立软连接需要绝对路径,不能使用相对路径

这是为什么???

[root@localhost /]# ll /usr/bin/test.sh

lrwxrwxrwx. 1 root root 7 Aug 14 19:41 /usr/bin/test.sh -> test.sh

[root@localhost ~]# ll test.sh

-rwxr-xr-x. 1 root root 33 Aug 14 19:26 test.sh

# 很明显这个这个链接文件对应的test.sh是找不到的,是“空的文件”,而不是在root目录下的

so:

[root@localhost ~]# rm -rf /usr/bin/test.sh

[root@localhost ~]# ln -s /root/test.sh /usr/bin/

[root@localhost ~]# cd /

[root@localhost /]# test.sh

this is test

成功!!!

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/木道寻08/article/detail/987527
推荐阅读
相关标签
  

闽ICP备14008679号