Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 |
Tags
- SVN
- php
- Oracle
- smarty
- JavaScript
- Python
- jQuery
- install
- TPL
- 확장자
- i18n
- 한글 깨짐
- random
- Selectbox
- TextBox
- yum
- MySQL
- mariadb
- 일괄변경
- RabbitMQ
- centos
- replace
- Eclipse
- 문자열자르기
- 천단위
- Postfix
- ubuntu
- 부모창
- docker
Archives
- Today
- Total
wilson's story
[Ubuntu] terminal tab _get_comp_words_by_ref: command not found 본문
반응형
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
반응형