BeeClip is a small abstraction layer over your operating system's clipboard CLI.
| Operating System | Command |
|---|---|
| Windows / Windows Subsytem for Linux | clip.exe |
| Darwin | pbcopy |
| X11 Linux | xclip -selection c |
| Wayland Linux | wl-copy |
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.
If you have the go binary installed on your system, you can get BeeClip by simply running go get -u github.com/penguingovernor/beeclip.
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 | beeclipAnd this wouldn't be a complete README.md without a GIF example:
- Logo made using logomakr

