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 📑
- Host: GitHub
- URL: https://github.com/saeed0xf/clip
- Owner: saeed0xf
- License: mit
- Created: 2022-12-24T13:12:46.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-02-15T05:03:40.000Z (over 2 years ago)
- Last Synced: 2025-02-11T16:39:52.604Z (over 1 year ago)
- Topics: cli, golang, linux, tool, windows
- Language: Go
- Homepage:
- Size: 2.46 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```