Is there an Environment Variable that contains the clipboard contents?

一个人想着一个人 提交于 2019-12-02 04:25:33

问题


Is there a Bash environment variable (say $CLIPBOARD or similar) that contains the current contents of the clipboard?

The specific example is to see the top 20 lines of a file whose path I have just copied into the clipboard.

  1. Copy path with Ctrl-C
  2. Switch to terminal
  3. Type more, Ctrl-V

UPDATE: I'm running on CentOS 4


回答1:


No, there isn't a bash environment variable. For your platform (which you don't specify) you may be able to use a command line tool like xclip or one of the many Windows utilities (google for "windows clipboard command line").




回答2:


You might look into xclip or pbcopy/pbpaste (Mac OS X).




回答3:


I don't really know exactly what you are trying to accomplish. Check out the following article and see if it helps: Remotely transferring clipboard data using netcat and bash

Update: If you are using OSX, try using pbcopy & pbpaste to copy and paste data from the clipboard.




回答4:


This requires an additional command-line utility, but it looks like what you describe:

Command Line to Clipboard




回答5:


Using xclip combined with Readline bindings in Bash - a bit of a hack, but it works

http://bash-hackers.org/wiki/doku.php/snipplets/xclip



来源:https://stackoverflow.com/questions/1064762/is-there-an-environment-variable-that-contains-the-clipboard-contents

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!