A command-line clipboard copy and paste utility?

Peter.O

In Windows I used command-line clipboard copy-and-paste utilities...

  • pclip.exe and gclip.exe

These were UnixUtils ports for Windows (but they only handled plain text). There were a couple of other native Windows utilities which could write/extract any format.

I've looked for something similar in Synaptic Package Manager, but I can't find anything.

Is there something there, that I've missed? ... or maybe this is available in Bash scripting?

The type of utility I'd like will be able to read/write via std-in/std-out or file-in/file-out, and handle Unicode, Rich Text Format, picture, etc. clipboard formats...

NB: I'm not after a clipboard manager.

Adi Roiban

xsel

I am using xsel Install xsel, but I am only using it with plain text and unicode text.

xsel can copy and paste to three different "clipboards".

By default, it uses the X Window System primary selection, which is basically whatever is currently in selection. The X Window System also has a secondary selection (which isn't used much), and a clipboard selection. You're probably looking for the clipboard selection, since that's what the desktop environment (e.g. Gnome, KDE, XFCE) uses for its clipboard. To use that with xsel:

xsel --clipboard < new-clipboard-contents.txt
xsel --clipboard > current-clipboard-contents.txt

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

A command-line clipboard copy and paste utility?

From Dev

Command-line utility to copy file to clipboard from file path

From Dev

Windows utility/tool command line to move clipboard to file

From Dev

Copy paste a multiline command into command line

From Dev

Using command line to copy html file to clipboard

From Dev

Copy and paste a file/directory from command line

From Dev

Copy/Paste from Python command line to sublime

From Java

Xcode Clipboard: Copy & Paste stuck

From Dev

Copy and Paste from Clipboard to URxvt

From Dev

Java Clipboard for cut/copy/paste

From Dev

Copy from clipboard and paste into a userform

From Dev

Copy to clipboard from php command line script in Windows 7

From Dev

How to copy an entire command line to my clipboard, without the mouse?

From Dev

How to copy an image to the clipboard from a file using command line?

From Dev

How to copy text from command line to clipboard without using the mouse?

From Dev

How to copy an image to the clipboard from a file using command line?

From Dev

How to copy an entire command line to my clipboard, without the mouse?

From Dev

How to copy a picture to clipboard from command line in linux?

From Dev

Is it possible to copy a variable to the Shift+Insert clipboard from the command line?

From Dev

Command Line utility for MySQL

From Dev

How to copy and paste in the command line Interface of Ubuntu Minimal?

From Dev

Command Line Clipboard Access

From Dev

Auto copy and paste utility for Mac and Vim

From Dev

in MySQL Command Line, how do I paste from the clipboard using only the keyboard?

From Dev

Copy / paste text selections between tmux and the clipboard

From Dev

service to clear clipboard in android to prevent copy paste

From Dev

Copy+Paste DataGridViewSelectedCellCollection to/from Clipboard

From Dev

JTable copy and paste using Clipboard and AbstractAction

From Dev

Clipboard Copy / Paste on Content script (Chrome Extension)

Related Related

  1. 1

    A command-line clipboard copy and paste utility?

  2. 2

    Command-line utility to copy file to clipboard from file path

  3. 3

    Windows utility/tool command line to move clipboard to file

  4. 4

    Copy paste a multiline command into command line

  5. 5

    Using command line to copy html file to clipboard

  6. 6

    Copy and paste a file/directory from command line

  7. 7

    Copy/Paste from Python command line to sublime

  8. 8

    Xcode Clipboard: Copy & Paste stuck

  9. 9

    Copy and Paste from Clipboard to URxvt

  10. 10

    Java Clipboard for cut/copy/paste

  11. 11

    Copy from clipboard and paste into a userform

  12. 12

    Copy to clipboard from php command line script in Windows 7

  13. 13

    How to copy an entire command line to my clipboard, without the mouse?

  14. 14

    How to copy an image to the clipboard from a file using command line?

  15. 15

    How to copy text from command line to clipboard without using the mouse?

  16. 16

    How to copy an image to the clipboard from a file using command line?

  17. 17

    How to copy an entire command line to my clipboard, without the mouse?

  18. 18

    How to copy a picture to clipboard from command line in linux?

  19. 19

    Is it possible to copy a variable to the Shift+Insert clipboard from the command line?

  20. 20

    Command Line utility for MySQL

  21. 21

    How to copy and paste in the command line Interface of Ubuntu Minimal?

  22. 22

    Command Line Clipboard Access

  23. 23

    Auto copy and paste utility for Mac and Vim

  24. 24

    in MySQL Command Line, how do I paste from the clipboard using only the keyboard?

  25. 25

    Copy / paste text selections between tmux and the clipboard

  26. 26

    service to clear clipboard in android to prevent copy paste

  27. 27

    Copy+Paste DataGridViewSelectedCellCollection to/from Clipboard

  28. 28

    JTable copy and paste using Clipboard and AbstractAction

  29. 29

    Clipboard Copy / Paste on Content script (Chrome Extension)

HotTag

Archive