문제

I have an annoying problem when using Screen on my SLED10 machine. When changing directory (cd, chdir, pushd/popd) the resulting path is echoed in the terminal.

user@/home/user> cd ..
Directory: /home
user@/home> 

This problem only seem to exist in Screen. I have checked my prompt and it does not contain anything related to this behavior. I am using tcsh/xterm.

How do I get rid of the echo of the directory?!

Best Regards, Stefan

도움이 되었습니까?

해결책

Maybe cd has been overridden with an alias or a function.

Once in screen, use:
alias cd to see if there is an alias and
declare -f to check your functions.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top