0
0

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.

pbcopyでファイルの中身をクリップボードにコピー

Posted at

pbcopy コマンドとは

ファイルの中身をクリップボードにコピーしたい時に使えるコマンド
これを使えばファイルを開くことなくターミナルでコピーを完結できる

使い方

例えば公開鍵( id_rsa.pub )の中身をコピーしたい時はターミナルで以下のコマンドを打てばいい
コマンドを実行したらその内容はクリップボードにコピーされるので command + v でペーストできる

$ cat id_rsa.pub | pbcopy

コマンド解説

cat

cat はファイルの中身をターミナル上で表示するコマンド
cat id_rsa.pub でやると id_rsa.pub の中身がそのままターミナル上に表示される

|(パイプ)

パイプ左側のコマンド結果を右側のコマンドに渡す役割を担っている
この例の場合 id_rsa.pub の中身を pbcopy へ渡している

pbcopy

cat id_rsa.pub の内容をクリップボードへコピー

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?