13
10

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 3 years have passed since last update.

linux ファイルの中身をクリップボードにコピーする

Last updated at Posted at 2020-01-21

環境

Red Hat 6.10
大体のLinux環境なら動くはず

手順 (2020/01/21現在)

1.ファイルを開く

vi [ファイル名]

2.ポインタをファイルの先頭に移動する

gg

3.visual(行)モードにする

shift + v

4.ポインタを最終行まで選択する

shift + G(大文字)

5.クリップボードにコピーする

y

理由

[xclip]・[dbcopy]などが使用できない環境で開発していて、
新たにyum installできない時に使用できる。

参考サイト

https://programming-jissen.com/how-to-select-all-in-vim/
https://linuxfan.info/xclip

13
10
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
13
10

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?