aboutsummaryrefslogtreecommitdiff
path: root/bin/sh/tests/builtins/cd7.0
blob: 5b656f422f02eca1e3a69cb030f5815a6b0b8767 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

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 ]