해결책: 프로그램에 버그가 있습니다. 아래의 수면 지침이 이를 찾는 데 도움이 되었습니다.
이 작업을 수행하는 방법을 아는 사람이 있나요?
다음을 시도했지만 xterm 또는 Apple 터미널에서 공백이 예상대로 작동하지 않기 전에 백슬래시를 이스케이프 처리했습니다.
SEARCH=' '
REPLACE='_' # XXX fix display of spaces
PWD_SPACE="${PWD//$SEARCH/$REPLACE}"
전체 내용:
# replace spaces with percent sign for pathnames
# with spaces
SEARCH=' '
REPLACE='%20'
PWD_URL="${PWD//$SEARCH/$REPLACE}"
SEARCH=' '
REPLACE='_' # XXX fix display of spaces
PWD_SPACE="${PWD//$SEARCH/$REPLACE}"
if [ -n "$KSH_VERSION" ]; then
TMP_PWD=$(shortpath $PWD_SPACE)
else
TMP_PWD=$(shortpath_bash_trunc $PWD_SPACE)
fi
if [ -t 0 ]; then
if [ "$TERM_PROGRAM" == "Apple_Terminal" ]; then
#titlebar "${SYS} : ${PWD##*/}"
$ECHOE "\033]0;\007"
$ECHOE "\033]6;\007"
$ECHOE "\033]7;file:$PWD_URL\007"
elif [[ "$TERM" == *"xterm"* ]]; then
$ECHOE "\033]0;$TMP_PWD\007"
$ECHOE "\033]6;\007"
$ECHOE "\033]7;\007"
fi
fi