Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re^2: Copy and Paste? (xclip, xsel)

by almut (Canon)
on Jun 12, 2008 at 00:26 UTC ( [id://691569]=note: print w/replies, xml ) Need Help??


in reply to Re: Copy and Paste?
in thread Copy and Paste?

Maybe it's worth mentioning that Clipboard is just using xclip under the hood (on unix-ish systems). In other words, xclip would need to be installed for it to work... — which unfortunately often isn't the case, as xclip doesn't belong to the base tools that come with X11.

In some cases, you might find xsel installed instead, which is another similar utility.

<off-topic>

BTW, seems like a good occasion to advertise a little trick: you may use xclip to conveniently copy files between machines when you already have a working X connection (e.g. ssh login with X forwarding enabled), and other means like scp or s/ftp would require you to re-authenticate.

For example, when I log into client sites, I often have to go through a somewhat cumbersome procedure, requiring me to enter various passphrases, SecureID tokens and whatnot, until I finally have my SSH/X connection... (yes I know there's ssh-agent, but it doesn't always help). In these cases, xclip comes to rescue. I.e. with the following two aliases in my ~/.bashrc (though it of course also works without aliases):

alias Xcopy='xclip -selection secondary -loops 1 -i <' alias Xpaste='xclip -selection secondary -o >'

I can just type

$ Xcopy myapp-latest-patches.tar.gz

on the local machine. And then, on the machine I'm logged in remotely:

$ Xpaste myapp-latest-patches.tar.gz

to have the tarball transferred without needing to retype my credentials every time.

(But mind you, however neat this seems, it isn't the right tool for copying Gigabyte-sized volumes... :)

</off-topic>

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://691569]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (6)
As of 2024-03-29 01:09 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found