Velvet Star Monitor

Standout celebrity highlights with iconic style.

general

Copy file contents to the clipboard in Linux terminal [closed]

Writer Andrew Mclaughlin

I'm generating an SSH key but I don't know how to copy the key from id_rsa.pub to the clipboard. I'm using BackBox Linux.

6

5 Answers

xclip -sel c < input_file

will copy the contents of input_file to clipboard. xclip requires installation. To install

sudo apt install xclip

-sel stands for -selection. c is for clipboard. Interchangeable.

Capable of much more, I advise reading its man page.

There is also xsel. This answer on Unix SE gives a very thorough answer to this exact question.

3

xclip -selection clipboard -i < fileName

copies the content of file into clipboard

1

You can do the following that will directly copy the content of id_rsa.pub to clipboard:

pbcopy < ~/.ssh/id_rsa.pub
1

If you're copying from terminal (like if you use the cat command already posted), highlight the key details and use Ctrl + Shift + C. This should put it on your clipboard. You can also right click and select 'copy' from terminal.

1

You can use:

cat ~/.ssh/id_rsa.pub

I hope that help you, if not:

Set up SSH for Git and Mercurial on Mac OSX/Linux

7