답변:
다른 선택은 xsel
프로그램입니다.
By default, this program outputs the selection without modification if both standard input and standard output are terminals (ttys). Other‐ wise, the current selection is output if standard output is not a ter‐ minal (tty), and the selection is set from standard input if standard input is not a terminal (tty). If any input or output options are given then the program behaves only in the requested mode.
따라서 클립 보드에 무언가를 복사 xsel
하여 터미널로 인쇄 하기 만하면 됩니다. man xsel
어떤 클립 보드를 사용해야하는지 등의 고급 옵션을 읽을 수 있습니다 .
alias pbcopy='xsel --clipboard --input'; alias pbpaste='xsel --clipboard --output'
MacOS 명령과 일치하는 이름을 선택했습니다.