赞
踩
突发奇想,怎么才能将脚本全图运行,体验自由的感觉~~
直接软连接到/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
成功!!!
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。