LoginSignup
41
35

More than 5 years have passed since last update.

端末からクリップボードへのコピペする

Posted at

Mac の場合はデフォルトで pbcopy/pbpaste というコマンドが用意されています

echo "abcde" | pbcopy

とすれば確認出来ると思います

便利すぎるので Ubuntu からでも使えるようにします

まず

sudo apt-get install xsel

してから .zshrc などに

alias pbcopy='xsel --clipboard --input'
alias pbpaste='xsel --clipboard --output'

と書くと Mac と同じように使えるようになります

便利!!!

41
35
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
41
35