tools/linux

pbcopy, pbpaste 에러

seul chan 2017. 3. 27. 22:36

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