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
- Oracle
- jQuery
- SVN
- JavaScript
- 부모창
- ubuntu
- TPL
- install
- Eclipse
- mariadb
- 한글 깨짐
- 문자열자르기
- 일괄변경
- replace
- random
- Postfix
- RabbitMQ
- yum
- Selectbox
- Python
- 확장자
- docker
- php
- smarty
- centos
- TextBox
- 천단위
- MySQL
- i18n
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
반응형