Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sindresorhus/windows-clipboard
Access the Windows clipboard (copy/paste)
https://github.com/sindresorhus/windows-clipboard
Last synced: about 1 month ago
JSON representation
Access the Windows clipboard (copy/paste)
- Host: GitHub
- URL: https://github.com/sindresorhus/windows-clipboard
- Owner: sindresorhus
- License: mit
- Created: 2017-04-22T09:41:06.000Z (over 7 years ago)
- Default Branch: main
- Last Pushed: 2023-11-04T19:38:29.000Z (about 1 year ago)
- Last Synced: 2024-05-20T11:02:54.131Z (6 months ago)
- Language: Batchfile
- Homepage:
- Size: 13.7 KB
- Stars: 65
- Watchers: 7
- Forks: 11
- Open Issues: 3
-
Metadata Files:
- Readme: readme.md
- License: license
Awesome Lists containing this project
README
# windows-clipboard
> Access the Windows clipboard (copy/paste)
With full UTF-8 support.
## Install
[Download](https://github.com/sindresorhus/windows-clipboard/releases/latest) the binaries and put them somewhere in your [`%path%`](http://stackoverflow.com/a/28778358/64949).
## Usage
```
$ clipboard --copy < echo unicorn
$ clipboard --paste
unicorn
```## Build
Install [`Rust`](https://rustup.rs) and run:
```sh
cargo build --release
```## Related
- [clipboardy](https://github.com/sindresorhus/clipboardy) - Access the system clipboard from Node.js, cross-platform
- [clipboard-cli](https://github.com/sindresorhus/clipboard-cli) - Access the system clipboard from the command-line, cross-platform