Skip to content

Latest commit

 

History

History
51 lines (31 loc) · 1.55 KB

README.md

File metadata and controls

51 lines (31 loc) · 1.55 KB

BeeClip 🐝📋

BeeClip is a small abstraction layer over your operating system's clipboard CLI.

Supported Operating Systems

Operating System Command
Windows / Windows Subsytem for Linux clip.exe
Darwin pbcopy
X11 Linux xclip -selection c
Wayland Linux wl-copy

Installation

Using GitHub Releases

Download the appropriate version of BeeClip for your operating system and architecture on the release page.

Don't forget to add BeeClip to your operating system's PATH variable.

Using Go

If you have the go binary installed on your system, you can get BeeClip by simply running go get -u github.com/penguingovernor/beeclip.

Usage

To use BeeClip pipe the output of your command to it.

Example:

# Pipe the output of a command.
$ echo "Hello world!" | beeclip

# Copy contents of a file to clipboard.
$ beeclip < file.txt

# Or for multiple files.
$ cat file1.txt file2.txt | beeclip

And this wouldn't be a complete README.md without a GIF example:

Credits