pbcopy, pbpaste 문제
터미널에서 해당 명령어가 안먹어서 검색 해본 결과
brew install reattach-to-user-namespace
.tmux.conf
파일에 다음을 추가해주고
set -g default-shell $SHELL
set -g default-command "reattach-to-user-namespace -l ${SHELL}"
.vimrc
파일에 다음울 추가해준다.
set clipboard=unnamed
그리고 tmux를 다시 시작하니 잘 해결됨
tmux kill-server
명령어를 치고 다시 시작해야한다.
사용법은 간단하다. 터미널 상에서 나온 결과물 뒤에 | pbcopy
를 사용하면 바로 클립보드에 복사가 된다.
$ cat test.txt | pbcopy
를 test.txt를 읽은 결과를 바로 클립보드로 복사하는 효과를 만들 수 있다.!
출처: https://github.com/tmux/tmux/issues/543
'tools > linux' 카테고리의 다른 글
우분투에서 데이터 지우기 (user data 삭제하기) (0) | 2017.12.03 |
---|---|
우분투에서 새 사용자(user) 만들기 (0) | 2017.12.02 |
Peco: 명령어 히스토리를 이용해서 shell에서 검색하기 (0) | 2017.04.06 |
내맘대로 터미널을 나누고 분할하자: terminator (linux) (0) | 2017.03.01 |
Bitnami 설치 (0) | 2016.12.06 |