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
YANK(1) FreeBSD General Commands Manual YANK(1)

yank
yank terminal output to clipboard

yank [-ilxv] [-d delim] [-g pattern] [-- command [argument ...]]

Read input from stdin and display a selection interface that allows a field to be selected and copied to the clipboard. Fields are either recognized by a regular expression using the -g option or by splitting the input on a delimiter sequence using the -d option, see DELIMITERS.

Using the arrow keys will move the selected field, see COMMANDS. Pressing the return key will invoke command and write the selected field to its stdin. The command defaults to xsel(1x) but could be anything that accepts input on stdin, see EXAMPLES.

The options are as follows:

delim
All input characters not present in delim will be recognized as fields, see DELIMITERS.
pattern
Use pattern to recognize fields, expressed as a POSIX extended regular expression.
Ignore case differences between pattern and the input.
Use the default delimiters except for space, see DELIMITERS.
Prints version.
Use alternate screen.
command [argument ...]
Use command with zero or more args as the yank command.

|
Move selection to the first field.
|
Exit without invoking the yank command.
|
Move selection to the last field.
/Ctrl-N | /Right | /l
Move selection to the left or right.
/Down | /k
Move selection to the next or previous line.
Exit using the selected field.

If the -d and -g options are omitted the following characters are recognized as delimiters by default:
\f
form feed
\n
new line
\r
carriage return
\s
space
\t
horizontal tab

If the -d option is present space is not recognized as a delimiter.

Yank an environment variable key or value:

$ env | yank -d =

Yank a field from a CSV file:

$ yank -d \", <file.csv

Yank a whole line using the -l option:

$ make 2>&1 | yank -l

If stdout is not a terminal the selected field will be written to stdout and exit without invoking the yank command. Kill the selected PID:

$ ps ux | yank -g [0-9]+ | xargs kill

Yank the selected field to the clipboard as opposed of the default primary clipboard:

$ yank -- xsel -b

The yank utility exits 0 on success, and >0 if an error occurs.

re_format(7)

Anton Lindqvist <anton@basename.se>

Recognizing fields enclosed in brackets requires ‘]’ to be present before ‘[’ in the argument given to the -d option, see re_format(7).
July 10, 2015 FreeBSD 13.1-RELEASE

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.