11 lines
101 B
Plaintext
11 lines
101 B
Plaintext
|
# $FreeBSD$
|
||
|
|
||
|
set -e
|
||
|
cd -P /bin
|
||
|
d=$PWD
|
||
|
CDPATH=/:
|
||
|
cd -P .
|
||
|
[ "$d" = "$PWD" ]
|
||
|
cd -P ./
|
||
|
[ "$d" = "$PWD" ]
|