GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
VIS-CLIPBOARD(1) FreeBSD General Commands Manual VIS-CLIPBOARD(1)

vis-clipboardRead from or write to the system clipboard

vis-clipboard --usable


vis-clipboard --copy [--selection selection]


vis-clipboard --paste [--selection selection]

vis-clipboard wraps various system-specific tools for interacting with a system clipboard, like xsel(1) for X11, pbcopy(1) for Mac OS X, and /dev/clipboard on Cygwin.

vis-clipboard can run in three different ways, depending on the flag given on the command-line.

In this mode, vis-clipboard looks for a way to interface with the system clipboard. If it finds one, it terminates with exit code 0. If no interface to the system clipboard is available, it terminates with exit code 1.
In this mode, vis-clipboard reads the content of standard input, and stores it in the system clipboard.
In this mode, vis-clipboard reads the content of the system clipboard, and writes it to standard output.
selection
specify which selection to use, options are "primary" or "clipboard". Silently ignored on platforms with a single clipboard.

The following environment variables affect the operation of vis-clipboard:

If non-empty, vis-clipboard will prefer to access the X11 clipboard even if other options are available.

The vis-clipboard utility exits 0 on success, and >0 if an error occurs. When run with the --usable flag, an exit status of 0 means that it found a supported system-specific tool, while 1 means that clipboard access is not available.

Test whether clipboard access is available:

if vis-clipboard --usable; then
	echo "Clipboard access available"
else
	echo "No clipboard"
fi

Copy a friendly greeting to the clipboard:

echo "Hello, World" | vis-clipboard --copy

Send the current contents of the system clipboard to be recorded and analyzed:

vis-clipboard --paste | curl -d - https://www.nsa.gov/

pbcopy(1), pbpaste(1), vis(1), xclip(1), xsel(1)

November 29, 2016 Vis 0.9

Search for    or go to Top of page |  Section 1 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.