minishell/tests/test_cd.txt
2025-03-06 15:58:17 +01:00

25 lines
398 B
Plaintext

cd ; pwd
cd .. ; pwd
cd . ; pwd
cd /Users ; pwd
cd // ; pwd
cd '//' ; pwd
cd ////// ; pwd
cd ./././ ; pwd
cd / ; pwd
cd '/etc' ; pwd
cd '/var' ; pwd
cd "$PWD/prompt" ; pwd
cd "doesntexist" ; pwd
cd "doesntexist" 2>/dev/null ; pwd
cd ../../.. ; pwd
cd .. ; pwd
cd .. ; pwd
cd ? ; pwd
cd + ; pwd
cd _ ; pwd
cd bark bark ; pwd
cd '/' ; pwd
cd $PWD/file_tests ; pwd
cd $OLDPWD/builtins ; pwd
cd ~ ; pwd