当前位置:  开发笔记 > 编程语言 > 正文

如果file是LINUX OS上的链接

如何解决《如果file是LINUXOS上的链接》经验,为你挑选了2个好方法。

我试图使用"-h filename"命令检查KornShell(ksh)脚本中是否存在符号链接.这适用于HP机箱.

不确定Linux,AIX和Solaris机箱的正确选项是什么.

对此有何见解?



1> Brian Campbe..:

-h是POSIX规范的一部分; 它应该适用于任何模糊合理的地方.

根据man testMac OS X:

     -h file       True if file exists and is a symbolic link.  This operator
                   is retained for compatibility with previous versions of
                   this program. Do not rely on its existence; use -L instead.

-L也是标准化的,所以如果你发现任何-h不起作用的地方,你应该尝试-L.



2> whaley..:

至少在Linux系统上是-h(bash是我的shell):

lrwxrwxrwx 1 mule mule 37 Feb 27 09:43 mule.log -> /home/mule/runtime/mule/logs/mule.log
[mule@emdlcis01 ~]$ if [[ -h mule.log ]]; then echo "mule.log is a symlink that exists" ; fi
mule.log is a symlink that exists

检查man test您可以在给定环境中使用的文件和字符串上可用的运算符.

推荐阅读
地之南_816
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有