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)
- From: 藤原 誠 <makoto@xxxxx>
- Date: Mon, 08 Jan 2001 14:35:32 +0900
- X-ml-name: namazu-devel-ja
- X-mail-count: 01215
> 千葉市中央区長洲
> 藤原 誠
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 ();
---
(藤原)