clipboard

May 31, 2026 · View on GitHub

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     TypeDescriptionDefault
 ‑s,
‑‑save 
flagSave output to clipboard.

Common Options

     Option     TypeDescriptionDefault
 ‑h,
‑‑help 
flagDisplay this message

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