0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

ターミナル内のコピー&ペースト

Posted at

xsel --clipboard --input

ubuntu2204LTS

調べものしている時に偶然見つけた、端末でコピー&ペーストが出来るコマンド。
macはpbcopyコマンドがあるが、linuxだとxsel --clipboard --inputと長いので
bashの設定ファイルにエイリアスを設定した。

#cat ~/.bashrc
alias pbcopy='xsel --clipboard --input'
alias pbpaste='xsel --clipboard --input'
~$ cat test.txt2 
taro hanako
~$ cat test.txt2 | pbcopy
~$ pbpaste
taro hanako

端末内ではマウスを使わないとコピー&ペーストが出来なかったので、重宝するかもです。

0
2
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
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?