Namazu-devel-ja(旧)


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

test -h or test -L (Re: mknmz: symlinked target directory)



>                                            千葉市中央区長洲
>                                                    藤原  誠
test -h か test -L の件
○ NetBSD 
NetBSD で man test とすると、次のような記述があります。

-h file       True if file exists and is a symbolic link.

-L 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 -h instead.

# which test は /bin/test と言っています。

○ sh-utils-2.0/src/test.c
には次のように書いてあります(しか書いてありません)

    case 'L':                   /* Same as -h  */
      /*FALLTHROUGH*/

    case 'h':                   /* File is a symbolic link? */
      unary_advance ();
---
(藤原)