/cb

Read and write clipboard contents with file and standard IO on the command line.

Primary LanguageGoMIT LicenseMIT

cb

Usage

Copy file contents to clipboard:

cb file.txt

Copy stdin contents to clipboard:

echo foo | cb

Omit exactly one trailing line break if it exists:

echo foo | cb -n
# or
echo -n foo | cb

Manually write the clipboard:

cb
Hello World!^D # ^D = Ctrl+D (send EOF)

Write clipboard to stdout:

cb -o

Write clipboard to file:

cb -o file.txt

Installation

go get -u github.com/setlog/cb