資料來源:How to copy and paste within a terminal in macOS or Linux?
在 MacOS 下,可以用 pbcopy/pbpaste
cat file.txt | pbcopy
pbpaste | tee foo.txt
在 Linux 下,要用 xsel,主要是參數 –input 跟 –output
# 複製到剪貼簿
cat file.txt | xsel --clipboard --input
xsel --clipboard --output | tee foo.txt
若要讓指令一致,可以用 alias
alias pbcopy='xsel --clipboard --input'
alias pbpaste='xsel --clipboard --output'
沒有留言:
張貼留言