I have copied something from Internet and I want that copied text to get copied to a file. But how can I copy that text without using mouse or any command like Ctrl+V. I want to do this from terminal. How can I do that in Ubuntu 12.04?
Asked
Active
Viewed 1.2k times
4 Answers
18
Using xclip.
For writing clipboard to file, overriding existing content:
xclip -o > /path/to/file.txt
or for appending clipboard to file:
xclip -o >> /path/to/file.txt
girardengo
- 4,925
- 1
- 26
- 31
17
If you don't want (or you can't) install extra software, you can do it with cat
cat > /path/to/file.txt
after this the terminal waits user input, so you can paste from your clipboard:
Ctrl + Shift + v
Then press Enter
And exit cat with
Ctrl + c
I learned this while watching:
https://www.youtube.com/watch?v=dDddKmdLEdg
nulll
- 599
- 1
- 5
- 15
-
1
-
2
-
-
right-click to paste, instead of Ctrl + Shift + v, worked for me (Ubuntu terminal on WSL), but otherwise great solution, installed xclip for nothing as it did not work. – sritmak Sep 15 '22 at 12:13
0
copy to clipboard then
xsel -o >> note.txt
but it not include new line "\n"
用件、用例(scenario): I input some Japanese 言葉 on google.translate.com then I'd like to take a note to save input history for review it later.
rollto
- 1
- 1