freebsd-nq/bin/sh/tests/builtins/cd7.0

16 lines
180 B
Plaintext
Raw Normal View History

# $FreeBSD$
set -e
cd /usr/bin
[ "$PWD" = /usr/bin ]
CDPATH=/:
cd .
[ "$PWD" = /usr/bin ]
cd ./
[ "$PWD" = /usr/bin ]
cd ..
[ "$PWD" = /usr ]
cd /usr/bin
cd ../
[ "$PWD" = /usr ]