An open API service indexing awesome lists of open source software.

https://github.com/saeed0xf/clip

a tool for copying texts from terminal 📑
https://github.com/saeed0xf/clip

cli golang linux tool windows

Last synced: over 1 year ago
JSON representation

a tool for copying texts from terminal 📑

Awesome Lists containing this project

README

          

# clip

a simple copying tool for windows and linux. It takes standard user input through a pipe and copies the text in the clipboard.

## Installation

```sh
go install github.com/saeed0x1/clip@latest
```

### Usage :

for single lines
```bash
echo "some text" | clip
```

for multiple lines
```bash
cat file.txt | clip
```