cbs is a command line utility that is designed to run on linux system , macOs and maybe windows. It provides an interface to manage clipboard from the command line
```sh
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
cargo install cbs ```
cbs copy "Text to be copied to clipboard"
cbs copy -s primary "Text to be copied to primary # only linux"
cbs paste
cbs paste -s primary # only linux
cat exmaple-file.txt | cbs
cat exmaple-file.txt | cbs -s primary # only linux
```sh USAGE: cbs [OPTIONS] [SUBCOMMAND]
FLAGS: -h, --help Prints help information -V, --version Prints version information
OPTIONS:
-s, --select
SUBCOMMANDS: clear clear text content copy copy text content help Prints this message or the help of the given subcommand(s) paste paste text content ```