wilson's story

[Ubuntu] terminal tab _get_comp_words_by_ref: command not found 본문

Linux

[Ubuntu] terminal tab _get_comp_words_by_ref: command not found

wilson 2024. 4. 16. 13:48
반응형

ubuntu terminal 에서 tab 했을때 에러 날때 
에러 : _get_comp_words_by_ref: command not found

 

1차로 아래와 같이 해본다

apt-get install bash-completion
exec bash
type _init_completion



에러 : bash: type: _init_completion: not found

 

 

bash-completion 를 설치  적용 했는데도 에러가 난다면 

# 파일 확인
/usr/share/bash-completion/bash_completion

vi ~/.bashrc

# 맨마지막 줄에 추가
source /usr/share/bash-completion/bash_completion

exec bash
type _init_completion

 

반응형