Skip to content

Latest commit

 

History

History
64 lines (41 loc) · 1.99 KB

File metadata and controls

64 lines (41 loc) · 1.99 KB

clipboard

Provide input from the clipboard or save output to the clipboard.

Table of Contents | Source: src/cmd/clipboard.rs | 🖥️

Description | Examples | Usage | Clip Options | Common Options

Description

Provide input from the clipboard or save output to the clipboard.

Note when saving to clipboard on Windows, line breaks may be represented as \r\n (CRLF). Meanwhile on Linux and macOS, they may be represented as \n (LF).

Examples

Pipe into qsv stats using qsv clipboard and render it as a table:

qsv clipboard | qsv stats | qsv table

If you want to save the output of a command to the clipboard, pipe into qsv clipboard using the --save or -s flag:

qsv clipboard | qsv stats | qsv clipboard -s

See also https://github.com/dathere/qsv/wiki/Selection-and-Inspection#clipboard

Usage

qsv clipboard [options]
qsv clipboard --help

Clip Options

     Option      Type Description Default
 ‑s,
‑‑save 
flag Save output to clipboard.

Common Options

     Option      Type Description Default
 ‑h,
‑‑help 
flag Display this message

Source: src/cmd/clipboard.rs | Table of Contents | README