All Projects → robatipoor → cbs

robatipoor / cbs

Licence: Apache-2.0, MIT licenses found Licenses found Apache-2.0 LICENSE-APACHE MIT LICENSE-MIT
interface to manage clipboard from the command line

Programming Languages

rust
11053 projects
Makefile
30231 projects

Projects that are alternatives of or similar to cbs

SharpClipboard
A library for anonymously monitoring clipboard entries.
Stars: ✭ 127 (+408%)
Mutual labels:  clipboard, clipboard-manager
clipper
📋 Cross Platform Desktop App to Save history of all information you copy and use them whenever with a solitary snap
Stars: ✭ 42 (+68%)
Mutual labels:  clipboard, clipboard-manager
Copyq
Clipboard manager with advanced features
Stars: ✭ 4,346 (+17284%)
Mutual labels:  clipboard, clipboard-manager
cliptext
Clipboard manager for macOS. Built with Electron.js
Stars: ✭ 37 (+48%)
Mutual labels:  clipboard, clipboard-manager
clipboard-manager-electron
A clipboard manager built with Electron
Stars: ✭ 92 (+268%)
Mutual labels:  clipboard, clipboard-manager
CLIp
CLIp is a clipboard manager for a command line interface written in 100% standard C only. Pipe to it to copy, pipe from it to paste.
Stars: ✭ 12 (-52%)
Mutual labels:  clipboard, clipboard-manager
unlimited-clipboard
simple clipboard manager with unlimited history on electron
Stars: ✭ 21 (-16%)
Mutual labels:  clipboard, clipboard-manager
copy-image-clipboard
Lightweight library to copy PNG and JPG images to clipboard
Stars: ✭ 37 (+48%)
Mutual labels:  clipboard
clipboard-watch
This is height performance clipboard watcher, support windows,osx
Stars: ✭ 21 (-16%)
Mutual labels:  clipboard
CopyPasteJS
This a small JS library to execute clipboard functions in a fast and easy way.
Stars: ✭ 20 (-20%)
Mutual labels:  clipboard
Cheval
📋 Copy to the clipboard using JavaScript without writing JS. A full solution for all browsers and all devices. LibreJS compliant.
Stars: ✭ 231 (+824%)
Mutual labels:  clipboard
no-clipboard-app
Share your clipboard text to your device like Oculus Go.
Stars: ✭ 12 (-52%)
Mutual labels:  clipboard
nougat
Screenshot wrapper
Stars: ✭ 20 (-20%)
Mutual labels:  clipboard
vim-poweryank
Copy text over SSH
Stars: ✭ 51 (+104%)
Mutual labels:  clipboard
nvim-hclipboard
Hijack your clipboard in Neovim
Stars: ✭ 19 (-24%)
Mutual labels:  clipboard
copypasta
Cross-platform Rust system clipboard library
Stars: ✭ 186 (+644%)
Mutual labels:  clipboard
uniclip
Cross-platform shared clipboard
Stars: ✭ 116 (+364%)
Mutual labels:  clipboard
Vscode Paste Image
paste image from clipboard to markdown/asciidoc directly!
Stars: ✭ 236 (+844%)
Mutual labels:  clipboard
ImageClipboard.jl
Copy & Paste images with Julia
Stars: ✭ 33 (+32%)
Mutual labels:  clipboard
AsyncClipboardService
📋 An async & low-level windows clipboard service implementation for .NET, C#
Stars: ✭ 14 (-44%)
Mutual labels:  clipboard

cbs

Crates.io Build Status Build status License

Work in progress

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

Install cbs

# you need install rust
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
# and then install cbs
cargo install cbs

How to use

  • copy text to clipboard: cbs copy "Text to be copied to clipboard"
  • copy text to primary: cbs copy -s primary "Text to be copied to primary # only linux"
  • paste copied text from clipboard: cbs paste
  • paste copied text from primary: cbs paste -s primary # only linux
  • copy text to clipboard from stdin: cat exmaple-file.txt | cbs
  • copy text to primary from stdin: cat exmaple-file.txt | cbs -s primary # only linux

Usage

USAGE:
    cbs [OPTIONS] [SUBCOMMAND]

FLAGS:
    -h, --help       Prints help information
    -V, --version    Prints version information

OPTIONS:
    -s, --select <selection>  to access clipboard or primary [default: clipboard]  [possible values: clipboard,primary]

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
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].